Rollup merge of #29579 - steveklabnik:gh27322, r=apasel422

Fixes #27322
This commit is contained in:
Steve Klabnik 2015-11-05 12:43:03 +01:00
commit 05cbfa478c
1 changed files with 2 additions and 0 deletions

View File

@ -732,6 +732,8 @@ impl<T> [T] {
///
/// This is equivalent to `self.sort_by(|a, b| a.cmp(b))`.
///
/// This is a stable sort.
///
/// # Examples
///
/// ```rust