From ab854481bafdd62ab98b7abbb08f86bcd7cc8190 Mon Sep 17 00:00:00 2001 From: Jashank Jeremy Date: Sat, 22 Nov 2014 13:34:38 +1100 Subject: [PATCH] args() doc: Fix a documentation line. --- src/libstd/os.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/os.rs b/src/libstd/os.rs index d7ba4877086..688f4e35f08 100644 --- a/src/libstd/os.rs +++ b/src/libstd/os.rs @@ -1110,7 +1110,7 @@ extern "system" { /// /// The first element is traditionally the path to the executable, but it can be /// set to arbitrary text, and it may not even exist, so this property should not -// be relied upon for security purposes. +/// be relied upon for security purposes. /// /// The arguments are interpreted as utf-8, with invalid bytes replaced with \uFFFD. /// See `String::from_utf8_lossy` for details.