From 2e2836ad141104c52f926668f95d906df84325cc Mon Sep 17 00:00:00 2001 From: Proloy Mishra <67726964+pro465@users.noreply.github.com> Date: Sun, 22 May 2022 17:52:04 +0530 Subject: [PATCH] small change --- library/std/src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 28e802d07e1..1def9fe0972 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -2108,7 +2108,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 returning integers. /// So, every type implementing the `Termination` trait has to be converted /// to an integer. ///