From 9ae32fc00d5e65422971bf746561cf6641f5f748 Mon Sep 17 00:00:00 2001 From: Roman Proskuryakov Date: Mon, 1 Jun 2020 01:43:51 +0300 Subject: [PATCH] Fix typo in impl Display for Strip --- src/cargo/core/profiles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/core/profiles.rs b/src/cargo/core/profiles.rs index fc5fe31bccb..462e4af50d7 100644 --- a/src/cargo/core/profiles.rs +++ b/src/cargo/core/profiles.rs @@ -802,7 +802,7 @@ impl fmt::Display for Strip { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match *self { Strip::DebugInfo => "debuginfo", - Strip::None => "abort", + Strip::None => "none", Strip::Symbols => "symbols", } .fmt(f)