about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlexander Ronald Altman <alexanderaltman@me.com>2018-03-25 00:15:50 -0500
committerAlexander Ronald Altman <alexanderaltman@me.com>2018-03-25 01:27:45 -0500
commitf9661126ca1904d3712eb19d24a5880c6dc7b8ed (patch)
tree2e07b3110057fa9e85c864bef9bd462883a7a26e /src/libstd
parente5bf0428d134e6f9c1fe54839f249c616b6b0b0b (diff)
downloadrust-f9661126ca1904d3712eb19d24a5880c6dc7b8ed.tar.gz
rust-f9661126ca1904d3712eb19d24a5880c6dc7b8ed.zip
Minor formatting consistency fix.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index c877bf6aa35..92e9f48f7eb 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -1444,7 +1444,7 @@ pub fn id() -> u32 {
 #[unstable(feature = "termination_trait_lib", issue = "43301")]
 #[rustc_on_unimplemented(
   message="`main` has invalid return type `{Self}`",
-  label="`main` can only return types that implement {Termination}")]
+  label="`main` can only return types that implement `{Termination}`")]
 pub trait Termination {
     /// Is called to get the representation of the value as status code.
     /// This status code is returned to the operating system.