summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Epler <jepler@unpythonic.net>2020-02-27 11:07:37 -0600
committerJeff Epler <jepler@unpythonic.net>2020-02-27 11:07:37 -0600
commit645df931ae64e775dfb9641e3d96e3a6d5779d3d (patch)
tree3b19c093e5ab9c6668b0b2007913d3841bfe6500
parentfa3b9eba926525751d0968aef88317ce5ad25003 (diff)
typos
-rw-r--r--shared-bindings/ulab/__init__.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/ulab/__init__.rst b/shared-bindings/ulab/__init__.rst
index 329d28ca2..7e30f2a10 100644
--- a/shared-bindings/ulab/__init__.rst
+++ b/shared-bindings/ulab/__init__.rst
@@ -284,14 +284,14 @@ much more efficient than expressing the same operation as a Python loop.
.. method:: eig(m)
:param m: a square matrix
- :return tuple (eigenvectors, eigenvaues):
+ :return tuple (eigenvectors, eigenvalues):
Computes the eigenvalues and eigenvectors of a square matrix
.. method:: eye(size, \*, dtype=float)
- :param int: size - The number of rows and colums in the matrix
+ :param int: size - The number of rows and columns in the matrix
Returns a square matrix with all the diagonal elements set to 1 and all
other elements set to 0