From 45136e3642ebaa0e21af4b25722c09780a04629e Mon Sep 17 00:00:00 2001 From: Tyler Wilcock Date: Tue, 11 Sep 2018 12:02:50 -0500 Subject: [PATCH] Provide single quote separators around missing Cargo.toml field to improve readability --- src/manifest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.rs b/src/manifest.rs index e62d1fb1..f0bbca26 100644 --- a/src/manifest.rs +++ b/src/manifest.rs @@ -156,7 +156,7 @@ pub fn write_package_json( let warn_fmt = |field| { format!( - "Field {} is missing from Cargo.toml. It is not necessary, but recommended", + "Field '{}' is missing from Cargo.toml. It is not necessary, but recommended", field ) };