diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-03-17 08:49:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-17 08:49:10 -0400 |
| commit | 3bec563958c7913b993f9fc374e8432fe8de2b57 (patch) | |
| tree | 3646deaaf52eaaaf9be46e329235bee3cbfa1648 | |
| parent | b71e5f7b1fe8ec17f6f86c31b4a315a8ec35488f (diff) | |
| parent | 3d01e1ada9eb3e69abdfc1b1e51222c414c46215 (diff) | |
| download | rust-3bec563958c7913b993f9fc374e8432fe8de2b57.tar.gz rust-3bec563958c7913b993f9fc374e8432fe8de2b57.zip | |
Rollup merge of #40586 - steveklabnik:add-unstable-sort-to-unstable-book, r=frewsxcv
add sort_unstable to unstable book cc #40585
| -rw-r--r-- | src/doc/unstable-book/src/SUMMARY.md | 1 | ||||
| -rw-r--r-- | src/doc/unstable-book/src/sort-unstable.md | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/doc/unstable-book/src/SUMMARY.md b/src/doc/unstable-book/src/SUMMARY.md index 5fb323d6ce9..44eda204a3d 100644 --- a/src/doc/unstable-book/src/SUMMARY.md +++ b/src/doc/unstable-book/src/SUMMARY.md @@ -75,6 +75,7 @@ - [simd](simd.md) - [simd_ffi](simd-ffi.md) - [slice_patterns](slice-patterns.md) +- [sort_unstable](sort-unstable.md) - [specialization](specialization.md) - [staged_api](staged-api.md) - [start](start.md) diff --git a/src/doc/unstable-book/src/sort-unstable.md b/src/doc/unstable-book/src/sort-unstable.md new file mode 100644 index 00000000000..aec39de2c9a --- /dev/null +++ b/src/doc/unstable-book/src/sort-unstable.md @@ -0,0 +1,9 @@ +# `sort_unstable` + +The tracking issue for this feature is: [#40585] + +[#40585]: https://github.com/rust-lang/rust/issues/40585 + +------------------------ + + |
