summaryrefslogtreecommitdiffstats
path: root/Misc/cheatsheet
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-08-22 19:35:18 (GMT)
committerGeorg Brandl <georg@python.org>2005-08-22 19:35:18 (GMT)
commitf33d01d304c349a7f555779c7c99930f1203adb7 (patch)
treee13221ec9e4f3ad250155945963ca4f7785cf341 /Misc/cheatsheet
parent7208af47f8b1a34330194709e55e4ef17560cf6a (diff)
downloadcpython-f33d01d304c349a7f555779c7c99930f1203adb7.zip
cpython-f33d01d304c349a7f555779c7c99930f1203adb7.tar.gz
cpython-f33d01d304c349a7f555779c7c99930f1203adb7.tar.bz2
bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation
Diffstat (limited to 'Misc/cheatsheet')
-rw-r--r--Misc/cheatsheet2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index 071f13d..718c77b 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -209,7 +209,7 @@ Highest Operator Comment
+x, -x, ~x Unary operators
x**y Power
x*y x/y x%y x//y mult, division, modulo, floor division
- x+y x-y addition, substraction
+ x+y x-y addition, subtraction
x<<y x>>y Bit shifting
x&y Bitwise and
x^y Bitwise exclusive or