Skip to content

Commit 3bbdddb

Browse files
committed
Apply codespell checker
1 parent 9268885 commit 3bbdddb

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

docs/source/how_to.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ indistinguishable from independent.
6868
Initialize the state of the generator using leap-frog method, or raise :code:`ValueError`
6969
exception if not supported.
7070

71-
The leap-frog method partitions state tragectory into :code:`nstream` interleaved non-overlapping
71+
The leap-frog method partitions state trajectory into :code:`nstream` interleaved non-overlapping
7272
sub-sequences, and argument :code:`k` identifies the subsequence.
7373

7474
The method is supported for :ref:`"mcg31m1" <mcg31m1_brng>`, :ref:`"mcg59" <mcg59_brng>`, and :ref:`"wh" <wh_brng>`

docs/source/reference/ars5.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ initialized with either an integral seed, a list of integral seeds, or automatic
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="ars5")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma(3, 1) distibution
26+
# Gamma(3, 1) distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/mcg31.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ initialized with either an integral seed, a list of integral seeds, or automati
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="MCG31")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma(3, 1) distibution
26+
# Gamma(3, 1) distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/mcg59.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ initialized with either an integral seed, a list of integral seeds, or automati
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="MCG59")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma(3, 1) distibution
26+
# Gamma(3, 1) distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/mrg32k3a.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ initialized with either an integral seed, a list of integral seeds, or automati
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="MRG32k3a")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma(3, 1) distibution
26+
# Gamma(3, 1) distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/mt2203.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ An individual member of the set can be addressed by using a tuple to specify the
3232
rs = mkl_random.RandomState([1234, 567, 89, 0], brng=("MT2203", 6023))
3333
3434
# Use random state instance to generate 1000 random numbers from
35-
# Gamma(3, 1) distibution
35+
# Gamma(3, 1) distribution
3636
gsample = rs_vec.gamma(3, 1, size=1000)
3737
3838
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/philox4x32x10.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ initialized with either an integral seed, a list of integral seeds, or automati
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="philox4x32x10")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma(3, 1) distibution
26+
# Gamma(3, 1) distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/r250.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ initialized with either an integral seed, a list of integral seeds, or automati
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="R250")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma(3, 1) distibution
26+
# Gamma(3, 1) distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/sfmt19937.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ either an integral seed, a list of integral seeds, or automatically.
2323
rs_vec = mkl_random.RandomState([1234, 567, 89, 0], brng="SFMT19937")
2424
2525
# Use random state instance to generate 1000 random numbers from
26-
# Gamma distibution
26+
# Gamma distribution
2727
gsample = rs_vec.gamma(3, 1, size=1000)
2828
2929
When seed is not specified, the generator is initialized using system clock, e.g.:

docs/source/reference/wichmann_hill.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ An individual member of the set can be addressed by using a tuple to specify the
3333
rs = mkl_random.RandomState([1234, 567, 89, 0], brng=("WH", 200))
3434
3535
# Use random state instance to generate 1000 random numbers from
36-
# Gamma(3, 1) distibution
36+
# Gamma(3, 1) distribution
3737
gsample = rs_vec.gamma(3, 1, size=1000)
3838
3939
When seed is not specified, the generator is initialized using system clock, e.g.:

0 commit comments

Comments
 (0)