about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-09-14 16:42:22 +0200
committerGitHub <noreply@github.com>2019-09-14 16:42:22 +0200
commitafc52916f658e7b5dc102ef7cd5b2784cd15c4e3 (patch)
tree2cc0ee0da68aa5d26053b787ee42b11671fa490c /src/libstd/process.rs
parent45baedb14b94ee26c70439e244b73ab3090a4d13 (diff)
parent58a26c8fc0200c29bd753cf6fcfd80ee34a98920 (diff)
downloadrust-afc52916f658e7b5dc102ef7cd5b2784cd15c4e3.tar.gz
rust-afc52916f658e7b5dc102ef7cd5b2784cd15c4e3.zip
Rollup merge of #64203 - alexreg:rush-pr-2, r=centril
A few cosmetic improvements to code & comments in liballoc and libcore

Factored out from hacking on rustc for work on the REPL.

r? @Centril
Diffstat (limited to 'src/libstd/process.rs')
-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 000f80f99e7..c50025ab7d1 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -1595,7 +1595,7 @@ pub fn id() -> u32 {
 
 /// A trait for implementing arbitrary return types in the `main` function.
 ///
-/// The c-main function only supports to return integers as return type.
+/// The C-main function only supports to return integers as return type.
 /// So, every type implementing the `Termination` trait has to be converted
 /// to an integer.
 ///