Skip to content

Rollup of 12 pull requests #52791

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

Closed
wants to merge 29 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
db303c1
Minor improvements to bootstrap
ljedrz Jul 26, 2018
20151ca
Suggest on method signature diff between impl and trait
csmoe Jul 25, 2018
d5347ff
Fix ui test
csmoe Jul 26, 2018
70cb75c
make memrchr use align_offset
RalfJung Jul 26, 2018
0db4317
rustdoc: rework how default passes are chosen
QuietMisdreavus Jul 26, 2018
89a8162
Impl Send & Sync for JoinHandle
Jul 26, 2018
efa11da
rustc_metadata: test loading atoi instead of cos
cuviper Jul 27, 2018
e950d22
Omit the vendor component in Fuchsia triple
petrhosek Jul 27, 2018
688db1d
Add stability attributes
Jul 27, 2018
3170956
Remove unused option flag
sinkuu Apr 20, 2018
b326e71
Incorporate a stray test
sinkuu Apr 28, 2018
3bc59b5
use slice::align_to
RalfJung Jul 27, 2018
b2b697e
Sanity-check all constants
oli-obk Jun 4, 2018
35371b5
Update miri submodule
oli-obk Jul 26, 2018
fd616eb
Move a test that depends on the arch bitwidth to compile-fail
oli-obk Jul 26, 2018
e25c3e2
Fix doc comment for 'ptr::copy_to' method
Jul 27, 2018
a171ed2
revert accidental atty downgrade
RalfJung Jul 27, 2018
f869652
Rollup merge of #51361 - oli-obk:sanity_check_consts, r=nikomatsakis
Mark-Simulacrum Jul 27, 2018
15bc3ef
Rollup merge of #52702 - csmoe:mut_diff, r=estebank
Mark-Simulacrum Jul 27, 2018
a35af88
Rollup merge of #52729 - ljedrz:bootstrap_tweaks, r=alexcrichton
Mark-Simulacrum Jul 27, 2018
0805a6b
Rollup merge of #52744 - RalfJung:align_offset, r=Kimundi
Mark-Simulacrum Jul 27, 2018
344792f
Rollup merge of #52751 - QuietMisdreavus:you-shall-not-pass, r=Guilla…
Mark-Simulacrum Jul 27, 2018
e10d1c3
Rollup merge of #52759 - stjepang:impl-send-sync-for-joinhandle, r=TimNN
Mark-Simulacrum Jul 27, 2018
cda80f4
Rollup merge of #52760 - cuviper:test_loading_atoi, r=alexcrichton
Mark-Simulacrum Jul 27, 2018
0af668a
Rollup merge of #52763 - petrhosek:fuchsia-triple, r=alexcrichton
Mark-Simulacrum Jul 27, 2018
abb7040
Rollup merge of #52765 - sinkuu:remove_nonzeroing_move_opt, r=pnkfelix
Mark-Simulacrum Jul 27, 2018
1bcd779
Rollup merge of #52769 - sinkuu:stray_test, r=alexcrichton
Mark-Simulacrum Jul 27, 2018
86b8c75
Rollup merge of #52777 - omni-viral:master, r=TimNN
Mark-Simulacrum Jul 27, 2018
14d03a2
Rollup merge of #52779 - RalfJung:atty, r=Mark-Simulacrum
Mark-Simulacrum Jul 27, 2018
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
Fix doc comment for 'ptr::copy_to' method
  • Loading branch information
Zakarum committed Jul 27, 2018
commit e25c3e2f16ca89bda5d785cce41b1472003edbae
4 changes: 2 additions & 2 deletions src/libcore/ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1162,8 +1162,8 @@ impl<T: ?Sized> *const T {
///
/// Care must be taken with the ownership of `self` and `dest`.
/// This method semantically moves the values of `self` into `dest`.
/// However it does not drop the contents of `self`, or prevent the contents
/// of `dest` from being dropped or used.
/// However it does not drop the contents of `dest`, or prevent the contents
/// of `self` from being dropped or used.
///
/// # Examples
///
Expand Down