aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorTristan Reid <treid@netflix.com>2016-03-09 18:05:00 -0800
committerAndrew Or <andrew@databricks.com>2016-03-09 18:05:03 -0800
commit5f7dbdba6fec7615d3813365228ea093585e91f0 (patch)
treedef2fd1164e2a5ff3e9d4d6ba8b418080eb82484 /python
parent238447db5694a236e57fa21e22a5d6d45efa436e (diff)
downloadspark-5f7dbdba6fec7615d3813365228ea093585e91f0.tar.gz
spark-5f7dbdba6fec7615d3813365228ea093585e91f0.tar.bz2
spark-5f7dbdba6fec7615d3813365228ea093585e91f0.zip
[MINOR] Fix typo in 'hypot' docstring
Minor typo: docstring for pyspark.sql.functions: hypot has extra characters N/A Author: Tristan Reid <treid@netflix.com> Closes #11616 from tristanreid/master.
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/sql/functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/sql/functions.py b/python/pyspark/sql/functions.py
index 88924e2981..dee3d536be 100644
--- a/python/pyspark/sql/functions.py
+++ b/python/pyspark/sql/functions.py
@@ -142,7 +142,7 @@ _functions_1_6 = {
_binary_mathfunctions = {
'atan2': 'Returns the angle theta from the conversion of rectangular coordinates (x, y) to' +
'polar coordinates (r, theta).',
- 'hypot': 'Computes `sqrt(a^2^ + b^2^)` without intermediate overflow or underflow.',
+ 'hypot': 'Computes `sqrt(a^2 + b^2)` without intermediate overflow or underflow.',
'pow': 'Returns the value of the first argument raised to the power of the second argument.',
}