diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-12-13 18:22:09 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-12-15 06:44:20 -0800 |
| commit | 6c4a2bc55ffc4dcb64cab2e2772e012eb7a2c0c3 (patch) | |
| tree | e02199009fdcb5bc841f561c3cf29055c40ea81e /src/libstd/os.rs | |
| parent | 34dfa7addb7cb57ef4f6e70f00fa8216c343104e (diff) | |
| parent | 6780031540a708282be6262f820078f8e8198611 (diff) | |
| download | rust-6c4a2bc55ffc4dcb64cab2e2772e012eb7a2c0c3.tar.gz rust-6c4a2bc55ffc4dcb64cab2e2772e012eb7a2c0c3.zip | |
rollup merge of #19710: steveklabnik/gh15449
Fixes #15499.
Diffstat (limited to 'src/libstd/os.rs')
| -rw-r--r-- | src/libstd/os.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs index a3ecfb49ace..a8d854a7555 100644 --- a/src/libstd/os.rs +++ b/src/libstd/os.rs @@ -1237,7 +1237,7 @@ impl Copy for MapOption {} /// Possible errors when creating a map. pub enum MapError { - /// ## The following are POSIX-specific + /// # The following are POSIX-specific /// /// fd was not open for reading or, if using `MapWritable`, was not open for /// writing. @@ -1259,7 +1259,7 @@ pub enum MapError { ErrZeroLength, /// Unrecognized error. The inner value is the unrecognized errno. ErrUnknown(int), - /// ## The following are Windows-specific + /// # The following are Windows-specific /// /// Unsupported combination of protection flags /// (`MapReadable`/`MapWritable`/`MapExecutable`). |
