File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ trait RawMutSlice<T> : RawSlice<T> {
121
121
In addition, ` *const [T] ` and ` *mut [T] ` should provide * unsafe* implementations of the slicing
122
122
and indexing operators. That is, provide the operators, but require them to be used in an unsafe
123
123
block. Unsafe operators should behave exactly like dereffing a raw ptr. Unsafe slicing should
124
- yield a new raw slice. Unsafe indexing take a uint, and should return (and then deref) an
124
+ yield a new raw slice. Unsafe indexing takes a uint, and returns (and then deref) an
125
125
` &T ` or ` &mut T ` as appropriate (an alternative can be found in the alternatives section).
126
126
127
127
Unsafe addition, subtraction, and indexing of ` *const T ` and ` *mut T `
You can’t perform that action at this time.
0 commit comments