summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-08-22 19:35:24 (GMT)
committerGeorg Brandl <georg@python.org>2005-08-22 19:35:24 (GMT)
commit3d41e9aac7cf4f395a13f65f70f9a407dd180e6f (patch)
treeb21ba074e3dd03b3003131235f2eeab702d3d909 /Misc
parentf5b8d449f4cb145bb569bfeb783dc157804577fa (diff)
downloadcpython-3d41e9aac7cf4f395a13f65f70f9a407dd180e6f.zip
cpython-3d41e9aac7cf4f395a13f65f70f9a407dd180e6f.tar.gz
cpython-3d41e9aac7cf4f395a13f65f70f9a407dd180e6f.tar.bz2
backport bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation
Diffstat (limited to 'Misc')
-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