From 908bd797ded6d6e899b3f3d36ab8499f6c9ac089 Mon Sep 17 00:00:00 2001 From: sayaikegawa Date: Mon, 14 Sep 2020 15:58:21 +1000 Subject: [PATCH 1/2] adding r --- source/rst/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/rst/getting_started.md b/source/rst/getting_started.md index 57dea539..148fc684 100644 --- a/source/rst/getting_started.md +++ b/source/rst/getting_started.md @@ -126,7 +126,7 @@ Once you have installed Anaconda, you can start the Jupyter notebook. Either -* search for Jupyter in your applications menu, o +* search for Jupyter in your applications menu, or * open up a terminal and type `jupyter notebook` * > Windows users should substitute "Anaconda command prompt" for "terminal" in the previous line. From 1ea3bae961b280cc444a63b0480b2a1a7ad64da5 Mon Sep 17 00:00:00 2001 From: sayaikegawa Date: Mon, 14 Sep 2020 20:57:34 +1000 Subject: [PATCH 2/2] missing_word_in_list --- source/rst/getting_started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/rst/getting_started.md b/source/rst/getting_started.md index 148fc684..6ce01365 100644 --- a/source/rst/getting_started.md +++ b/source/rst/getting_started.md @@ -20,7 +20,7 @@ single: Python In this lecture, you will learn how to -1. get a Python environment up and runnin +1. get a Python environment up and running 1. execute simple Python commands 1. run a sample program 1. install the code libraries that underpin these lectures @@ -139,7 +139,7 @@ If you use the second option, you will see something like this The output tells us the notebook is running at `http://localhost:8888/` * `localhost` is the name of the local machine -* `8888` refers to [port number](https://en.wikipedia.org/wiki/Port_%28computer_networking%29) 8888 on your compute +* `8888` refers to [port number](https://en.wikipedia.org/wiki/Port_%28computer_networking%29) 8888 on your computer Thus, the Jupyter kernel is listening for Python commands on port 8888 of our local machine. @@ -196,10 +196,10 @@ This means that the effect of typing at the keyboard **depends on which mode you The two modes are 1. Edit mode - * > Indicated by a green border around one cell, plus a blinking curso + * > Indicated by a green border around one cell, plus a blinking cursor * > Whatever you type appears as is in that cell 1. Command mode - * > The green border is replaced by a grey (or grey and blue) borde + * > The green border is replaced by a grey (or grey and blue) border * > Keystrokes are interpreted as commands --- for example, typing > b> adds a new cell below the current one To switch to