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" {
262
262
///
263
263
/// # Safety
264
264
///
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.
270
271
///
271
272
/// # Examples
272
273
///
You can’t perform that action at this time.
0 commit comments