chore: remove repetitive words

Signed-off-by: CoolCu <coolcui@qq.com>
This commit is contained in:
CoolCu
2024-04-16 15:48:27 +08:00
parent 2aee46f169
commit 74313d594f
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ Operators
%= modulo and store
<<= shift left and store
>>= shift right and store
&= bitwise and and store
&= bitwise and store
^= bitwise exclusive or and store
|= bitwise or and store
, separator as in ( y=x,z=++x )

View File

@@ -120,7 +120,7 @@
| %= | modulo and store|
| <<= | shift left and store|
| \>>= | shift right and store|
| &= | bitwise and and store|
| &= | bitwise and store|
| ^= | bitwise exclusive or and store|
| \|= | bitwise or and store|
| , | separator as in ( y=x,z=++x )|