File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,12 +83,12 @@ use crate::vec::Vec;
83
83
/// The return value type for `RcOps::make_mut`.
84
84
#[ cfg( not( no_global_oom_handling) ) ]
85
85
pub ( crate ) enum MakeMutStrategy {
86
- /// This `RawRc` is the only strong pointer that reference to the value, but there are weak
87
- /// pointers also reference to the value. Before returning, the strong reference count has been
86
+ /// This `RawRc` is the only strong pointer that references the value, but there are weak
87
+ /// pointers also referencing the value. Before returning, the strong reference count has been
88
88
/// set to zero to prevent new strong pointers being created through upgrading from weak
89
89
/// pointers.
90
90
Move ,
91
- /// There is more than one strong pointers reference to the value.
91
+ /// There is more than one strong pointer that references the value.
92
92
Clone ,
93
93
}
94
94
You can’t perform that action at this time.
0 commit comments