File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1362,7 +1362,7 @@ trait RcBoxPtr<T: ?Sized> {
1362
1362
// We want to abort on overflow instead of dropping the value.
1363
1363
// The reference count will never be zero when this is called;
1364
1364
// nevertheless, we insert an abort here to hint LLVM at
1365
- // an otherwise missied optimization.
1365
+ // an otherwise missed optimization.
1366
1366
if self . strong ( ) == 0 || self . strong ( ) == usize:: max_value ( ) {
1367
1367
unsafe { abort ( ) ; }
1368
1368
}
@@ -1384,7 +1384,7 @@ trait RcBoxPtr<T: ?Sized> {
1384
1384
// We want to abort on overflow instead of dropping the value.
1385
1385
// The reference count will never be zero when this is called;
1386
1386
// nevertheless, we insert an abort here to hint LLVM at
1387
- // an otherwise missied optimization.
1387
+ // an otherwise missed optimization.
1388
1388
if self . weak ( ) == 0 || self . weak ( ) == usize:: max_value ( ) {
1389
1389
unsafe { abort ( ) ; }
1390
1390
}
You can’t perform that action at this time.
0 commit comments