Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #46967

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d5b1119
Const-eval TyArray trait implementors
detrumi Dec 20, 2017
24834eb
rustc: Set release mode cgus to 16 by default
alexcrichton Dec 21, 2017
c026d19
Add a feature gate for nested uses of `impl Trait`
cramertj Dec 20, 2017
20eece1
Correct the return type for `x86_mm256_sad_epu8`
varkor Dec 21, 2017
8a956e4
Clarify docs for split_at_mut
lucis-fluxum Dec 21, 2017
ebdd667
Make core::f32/f64 docs match std.
Dec 22, 2017
5935f1f
Update clippy
Manishearth Dec 22, 2017
4e14a7d
Fixing Rust Moderation Team link
davidalber Dec 22, 2017
0e703ed
Add support for CloudABI targets to the rustc backend.
EdSchouten Dec 22, 2017
4156752
Add CloudABI to the list of supported targets.
EdSchouten Dec 22, 2017
dc71cab
Fix process test when using busybox mkdir
malbarbo Dec 22, 2017
d10d389
Testcase for const-eval array lengths
detrumi Dec 23, 2017
330c261
Rollup merge of #46888 - cramertj:nested-impl-trait-error, r=nikomats…
kennytm Dec 23, 2017
d2d3b82
Rollup merge of #46894 - detrumi:fix-const-eval-trait, r=eddyb
kennytm Dec 23, 2017
271e291
Rollup merge of #46910 - alexcrichton:thinlto-default, r=michaelwoeri…
kennytm Dec 23, 2017
7276221
Rollup merge of #46928 - varkor:contrib-10, r=alexcrichton
kennytm Dec 23, 2017
f6e1c4f
Rollup merge of #46930 - lucis-fluxum:patch-1, r=QuietMisdreavus
kennytm Dec 23, 2017
e4f9dd7
Rollup merge of #46933 - clarcharr:float_docs, r=steveklabnik
kennytm Dec 23, 2017
3a795c9
Rollup merge of #46937 - Manishearth:fx-clip, r=kennytm
kennytm Dec 23, 2017
77f82e1
Rollup merge of #46939 - davidalber:code-of-conduct-mod-team-link, r=…
kennytm Dec 23, 2017
caec929
Rollup merge of #46940 - EdSchouten:cloudabi, r=alexcrichton
kennytm Dec 23, 2017
d89123b
Rollup merge of #46943 - malbarbo:process-test-busybox, r=alexcrichton
kennytm Dec 23, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clarify docs for split_at_mut
The `&mut` here didn't make immediate sense to me. Keep the docs for this function consistent with the non-mut version.
  • Loading branch information
lucis-fluxum authored Dec 21, 2017
commit 8a956e44a86f191224d5c3cd57c884f6a3cc1cb9
2 changes: 1 addition & 1 deletion src/liballoc/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ impl<T> [T] {
core_slice::SliceExt::split_at(self, mid)
}

/// Divides one `&mut` into two at an index.
/// Divides one mutable slice into two at an index.
///
/// The first will contain all indices from `[0, mid)` (excluding
/// the index `mid` itself) and the second will contain all
Expand Down