Skip to content

Commit f080f7d

Browse files
committed
Minor doc fixes.
1 parent 0a34a2f commit f080f7d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Running the Unit Tests
8787
To run all of the package unit tests, download and unpack the package source
8888
tarball and run::
8989

90-
python setup.py tests
90+
python setup.py test
9191

9292
from within the main directory in the archive. Tests for individual
9393
modules (found in the ``tests/`` subdirectory) can also be run

skcuda/misc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def add(x_gpu, y_gpu):
983983
984984
Notes
985985
-----
986-
The `out` and `stream` options not supported because `GPUArray.__add__`
986+
The `out` and `stream` options are not supported because `GPUArray.__add__`
987987
doesn't provide them.
988988
"""
989989

@@ -1008,7 +1008,7 @@ def subtract(x_gpu, y_gpu):
10081008
10091009
Notes
10101010
-----
1011-
The `out` and `stream` options not supported because `GPUArray.__sub__`
1011+
The `out` and `stream` options are not supported because `GPUArray.__sub__`
10121012
doesn't provide them.
10131013
"""
10141014

@@ -1033,7 +1033,7 @@ def multiply(x_gpu, y_gpu):
10331033
10341034
Notes
10351035
-----
1036-
The `out` and `stream` options not supported because `GPUArray.__mul__`
1036+
The `out` and `stream` options are not supported because `GPUArray.__mul__`
10371037
doesn't provide them.
10381038
"""
10391039

@@ -1058,7 +1058,7 @@ def divide(x_gpu, y_gpu):
10581058
10591059
Notes
10601060
-----
1061-
The `out` and `stream` options not supported because `GPUArray.__div__`
1061+
The `out` and `stream` options are not supported because `GPUArray.__div__`
10621062
doesn't provide them.
10631063
"""
10641064

0 commit comments

Comments
 (0)