From 74313d594f6a813a61184ac264cb58c893cb03de Mon Sep 17 00:00:00 2001 From: CoolCu Date: Tue, 16 Apr 2024 15:48:27 +0800 Subject: [PATCH] chore: remove repetitive words Signed-off-by: CoolCu --- languages/C.txt | 2 +- languages/python.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/C.txt b/languages/C.txt index ca721f53..0f3c35c6 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 1eaf23e3..7f421922 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 )|