Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/functions.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2011-08-16 16:10:54 (GMT)
committer Gary Martin <gary@garycmartin.com>2011-08-16 16:10:54 (GMT)
commit789f78d6a48f99619c176281e6cfc88471f1ba57 (patch)
treecea73dc29b3c4f98b14c4b6bd87b3c08330a73e0 /functions.py
parentf12ff42d766b2877f7f2654d74d95a1f3edbb3e5 (diff)
Fix string typo in functions.py help string. SL#3045
Diffstat (limited to 'functions.py')
-rw-r--r--functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.py b/functions.py
index b057d4a..8a737ff 100644
--- a/functions.py
+++ b/functions.py
@@ -138,7 +138,7 @@ add.__doc__ = _('add(x, y), return x + y')
def asin(x):
return _inv_scale_angle(math.asin(x))
asin.__doc__ = _(
-'asin(x), return the arc sine of x. This is the angle for which the sine is ix. \
+'asin(x), return the arc sine of x. This is the angle for which the sine is x. \
Defined for -1 <= x <= 1')
def asinh(x):