File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -262,11 +262,12 @@ extern "rust-intrinsic" {
262262 ///
263263 /// # Safety
264264 ///
265- /// Beyond requiring that both regions of memory be allocated, it is Undefined Behaviour
266- /// for source and destination to overlap. Care must also be taken with the ownership of
267- /// `src` and `dst`. This method semantically moves the values of `src` into `dst`.
268- /// However it does not drop the contents of `dst`, or prevent the contents of `src`
269- /// from being dropped or used.
265+ /// Beyond requiring that the program must be allowed to access both regions
266+ /// of memory, it is Undefined Behaviour for source and destination to
267+ /// overlap. Care must also be taken with the ownership of `src` and
268+ /// `dst`. This method semantically moves the values of `src` into `dst`.
269+ /// However it does not drop the contents of `dst`, or prevent the contents
270+ /// of `src` from being dropped or used.
270271 ///
271272 /// # Examples
272273 ///
You can’t perform that action at this time.
0 commit comments