diff --git a/languages/C.txt b/languages/C.txt index 113f8ce..b7f9419 100644 --- a/languages/C.txt +++ b/languages/C.txt @@ -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 ) diff --git a/languages/python.md b/languages/python.md index a6f08d1..6af32a8 100644 --- a/languages/python.md +++ b/languages/python.md @@ -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 )|