about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorZHANGWENTAI <2092913428@qq.com>2022-03-22 23:10:00 +0800
committerZHANGWENTAI <2092913428@qq.com>2022-03-22 23:10:00 +0800
commit161b01a9acdfb0ccc5ec59f28996944780a6bbd4 (patch)
tree14979db8ef3ae4d47f49111629e9afb69dd9582a /library/std/src
parent6e971a8bc28705018f735bc075cb79ddd495601f (diff)
downloadrust-161b01a9acdfb0ccc5ec59f28996944780a6bbd4.tar.gz
rust-161b01a9acdfb0ccc5ec59f28996944780a6bbd4.zip
fix the lint problem
Signed-off-by: ZHANGWENTAI <2092913428@qq.com>
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/process.rs b/library/std/src/process.rs
index 498be0aa262..9d2e844187e 100644
--- a/library/std/src/process.rs
+++ b/library/std/src/process.rs
@@ -2032,7 +2032,7 @@ pub fn id() -> u32 {
 /// a successful execution. In case of a failure, `libc::EXIT_FAILURE` is returned.
 ///
 /// For the reason that different runtimes have diffrent specificatons on the
-/// return value of the `main` function, this trait is likely to be available 
+/// return value of the `main` function, this trait is likely to be available
 /// only on standard library's runtime for type convenience.
 #[cfg_attr(not(test), lang = "termination")]
 #[unstable(feature = "termination_trait_lib", issue = "43301")]