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 @@ -1264,7 +1264,7 @@ be undesired.
1264
1264
* Sending signals
1265
1265
* Accessing/modifying the file system
1266
1266
* Unsigned integer overflow (well-defined as wrapping)
1267
- * Signed integer overflow (well-defined as two' s complement representation
1267
+ * Signed integer overflow (well-defined as two’ s complement representation
1268
1268
wrapping)
1269
1269
1270
1270
#### Diverging functions
@@ -2959,10 +2959,10 @@ meaning of the operators on standard types is given here.
2959
2959
: Exclusive or.
2960
2960
Calls the ` bitxor ` method of the ` std::ops::BitXor ` trait.
2961
2961
* ` << `
2962
- : Logical left shift.
2962
+ : Left shift.
2963
2963
Calls the ` shl ` method of the ` std::ops::Shl ` trait.
2964
2964
* ` >> `
2965
- : Logical right shift.
2965
+ : Right shift.
2966
2966
Calls the ` shr ` method of the ` std::ops::Shr ` trait.
2967
2967
2968
2968
#### Lazy boolean operators
You can’t perform that action at this time.
0 commit comments