Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9f6c92b

Browse files
committed
Typo
1 parent ebf21a3 commit 9f6c92b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ Journeyman
422422

423423
.. code-block:: python
424424
425-
# Jaime Fernández del Río
425+
# Author: Jaime Fernández del Río
426426
427427
D = np.random.uniform(0,1,100)
428428
S = np.random.randint(0,10,100)
@@ -458,7 +458,7 @@ Craftsman
458458

459459
.. code-block:: python
460460
461-
# Author: Nicolas Rougier
461+
# Author: Nicolas P. Rougier
462462
463463
faces = np.random.randint(0,100,(10,3))
464464
F = np.roll(faces.repeat(2,axis=1),-1,axis=1)
@@ -474,7 +474,7 @@ Craftsman
474474

475475
.. code-block:: python
476476
477-
# Jaime Fernández del Río
477+
# Author: Jaime Fernández del Río
478478
479479
C = np.bincount([1,1,2,3,4,4,6])
480480
A = np.repeat(np.arange(len(C)), C)
@@ -613,7 +613,7 @@ Expert
613613

614614
.. code-block:: python
615615
616-
# Eric O. Lebigot
616+
# Author: Eric O. Lebigot
617617
# Note: only works for 2d array and value setting using indices
618618
619619
class Symetric(np.ndarray):
@@ -633,7 +633,7 @@ Expert
633633

634634
.. code-block:: python
635635
636-
# Stéfan van der Walt
636+
# Author: Stéfan van der Walt
637637
638638
p, n = 10, 20
639639
M = np.ones((p,n,n))
@@ -657,7 +657,7 @@ Master
657657

658658
.. code-block:: python
659659
660-
# Jaime Fernández del Río
660+
# Author: Jaime Fernández del Río
661661
662662
Z = np.random.randint(0,2,(6,3))
663663
T = np.ascontiguousarray(Z).view(np.dtype((np.void, Z.dtype.itemsize * Z.shape[1])))

0 commit comments

Comments
 (0)