diff options
| author | Jakub Bukaj <jakub@jakub.cc> | 2014-11-23 14:11:54 -0500 |
|---|---|---|
| committer | Jakub Bukaj <jakub@jakub.cc> | 2014-11-23 14:11:54 -0500 |
| commit | 072015ee3d0495578c6072c6af38544e1af3710b (patch) | |
| tree | fea5cfd60c50f44a235279dfe5b3690ae4959412 /src/libstd | |
| parent | 9d721180f2b99225d8af5c424e75af1d3988fc93 (diff) | |
| parent | ab854481bafdd62ab98b7abbb08f86bcd7cc8190 (diff) | |
| download | rust-072015ee3d0495578c6072c6af38544e1af3710b.tar.gz rust-072015ee3d0495578c6072c6af38544e1af3710b.zip | |
rollup merge of #19205: jashank/docs-fix
Catch a missed triple-slash in the docs for `std::os::args()`. Passes `make check`. (I've also eyeballed the rest of `libstd` with the aid of some funky regexes and haven't found anything similar.)
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/os.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs index b3591cd6408..9b50361ec1f 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. |
