Skip to content

Commit

Permalink
Fix typo in FAQ (#292)
Browse files Browse the repository at this point in the history
Changed `numpy` to `np` in reproducible experiments section (setting random seed) to match import name
  • Loading branch information
jayqi authored and NicolasHug committed Aug 5, 2019
1 parent 89fb7a2 commit c8439e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/FAQ.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ seed of the RNG at the beginning of your program:
my_seed = 0
random.seed(my_seed)
numpy.random.seed(my_seed)
np.random.seed(my_seed)
.. _data_folder:

Expand Down

0 comments on commit c8439e2

Please sign in to comment.