Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.py b/functions.py
index ac45610..ddc1088 100644
--- a/functions.py
+++ b/functions.py
@@ -381,7 +381,7 @@ def sub(x, y):
x = _d(x)
y = _d(y)
return x - y
-add.__doc__ = _('sub(x, y), return x - y')
+sub.__doc__ = _('sub(x, y), return x - y')
def tan(x):
return math.tan(_scale_angle(x))