From 2d0dfa60f9bdc88fe882a799d2978f36ff48cdb0 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 19 Jan 2021 22:00:51 +0000 Subject: [PATCH] RF: Tiny formatting fixes --- getting_started/00_overview.ipynb | 6 +++--- getting_started/00_overview.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/getting_started/00_overview.ipynb b/getting_started/00_overview.ipynb index c97481e..af3bb24 100644 --- a/getting_started/00_overview.ipynb +++ b/getting_started/00_overview.ipynb @@ -927,8 +927,8 @@ "* `<mode>` is one of `'r'` (for read-only access), `'w'` (for writing a file,\n", " this wipes out any existing content), `'a'` (for appending to an existing\n", " file).\n", - "* `<file_object>` is a variable name which will be used within the `<block of\n", - " code>` to access the opened file.\n", + "* `<file_object>` is a variable name which will be used within the\n", + " `<block of code>` to access the opened file.\n", "\n", "\n", "For example the following will read all the text in `00_overview/file.txt` and\n", @@ -1134,7 +1134,7 @@ "outputs": [], "source": [ "def changelist(l):\n", - " l[0] = 'mwahahaha!'\n", + " l[0] = 'mwahahaha!'\n", "\n", "mylist = [1,2,3,4,5]\n", "\n", diff --git a/getting_started/00_overview.md b/getting_started/00_overview.md index dabb7cd..8cb4181 100644 --- a/getting_started/00_overview.md +++ b/getting_started/00_overview.md @@ -663,8 +663,8 @@ The syntax to open a file in python is * `<mode>` is one of `'r'` (for read-only access), `'w'` (for writing a file, this wipes out any existing content), `'a'` (for appending to an existing file). -* `<file_object>` is a variable name which will be used within the `<block of - code>` to access the opened file. +* `<file_object>` is a variable name which will be used within the + `<block of code>` to access the opened file. For example the following will read all the text in `00_overview/file.txt` and @@ -809,7 +809,7 @@ might change it! ``` def changelist(l): - l[0] = 'mwahahaha!' + l[0] = 'mwahahaha!' mylist = [1,2,3,4,5] -- GitLab