Compare commits

...

2 Commits

Author SHA1 Message Date
CoolCu
cb1784ece1 Merge 74313d594f into 88e5be6e4b 2024-10-28 12:36:26 +00:00
CoolCu
74313d594f chore: remove repetitive words
Signed-off-by: CoolCu <coolcui@qq.com>
2024-04-16 15:48:27 +08:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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