diff --git a/_episodes/02-numpy.md b/_episodes/02-numpy.md index 665361d7956b53e628141039cabda48a09e7cca5..4c80700e5779801a394b443c880f5f678df0fdb8 100644 --- a/_episodes/02-numpy.md +++ b/_episodes/02-numpy.md @@ -388,9 +388,9 @@ standard deviation: 4.61383319712 > to see a list of all functions and attributes that you can use. After selecting one, you > can also add a question mark (e.g. `numpy.cumprod?`), and IPython will return an > explanation of the method! This is the same as doing `help(numpy.cumprod)`. -> Similarly, if you are using the "plain vanilla" Python interpreter, you can type `numpy.` -> and press the Tab key twice for a listing of what is available. You can then use the -> `help()` function to see an explanation of the function you're interested in, +> Similarly, if you are using the "plain vanilla" Python interpreter, you can type `numpy.` +> and press the Tab key twice for a listing of what is available. You can then use the +> `help()` function to see an explanation of the function you're interested in, > for example: `help(numpy.cumprod)`. {: .callout}