rollup merge of #19710: steveklabnik/gh15449

Fixes #15499.
This commit is contained in:
Brian Anderson
2014-12-13 18:22:09 -08:00
11 changed files with 22 additions and 19 deletions

View File

@@ -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`).