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