From d29e9f18f07c61e1a6b90ca5a01abd0a490a850a Mon Sep 17 00:00:00 2001 From: Maxim Belkin Date: Wed, 18 Dec 2019 13:36:13 -0600 Subject: [PATCH] Restore whitespaces --- _episodes/02-numpy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_episodes/02-numpy.md b/_episodes/02-numpy.md index 665361d..4c80700 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} -- GitLab