Skip to content

Commit c5ffd37

Browse files
authored
Replaced many "it" with better words (#311)
As a follow-up to issue #310 I replaced many "it" to clarify text.
1 parent f655f04 commit c5ffd37

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

episodes/05-writing-scripts.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ The text at the bottom of the screen shows the keyboard shortcuts for performing
6060

6161
> ## Which Editor?
6262
>
63-
> When we say, "`nano` is a text editor," we really do mean "text": it can
63+
> When we say, "`nano` is a text editor," we really do mean "text": `nano` can
6464
> only work with plain character data, not tables, images, or any other
65-
> human-friendly media. We use it in examples because it is one of the
66-
> least complex text editors. However, because of this trait, it may
65+
> human-friendly media. We use `nano` in examples because it is one of the
66+
> least complex text editors. However, because of this trait, `nano` may
6767
> not be powerful enough or flexible enough for the work you need to do
6868
> after this workshop. On Unix systems (such as Linux and Mac OS X),
6969
> many programmers use [Emacs](http://www.gnu.org/software/emacs/) or
@@ -74,10 +74,10 @@ The text at the bottom of the screen shows the keyboard shortcuts for performing
7474
> editor called `notepad` that can be run from the command line in the same
7575
> way as `nano` for the purposes of this lesson.
7676
>
77-
> No matter what editor you use, you will need to know where it searches
78-
> for and saves files. If you start it from the shell, it will (probably)
77+
> No matter what editor you use, you will need to know the default location where it searches
78+
> for files and where files are saved. If you start an editor from the shell, it will (probably)
7979
> use your current working directory as its default location. If you use
80-
> your computer's start menu, it may want to save files in your desktop or
80+
> your computer's start menu, the editor may want to save files in your desktop or
8181
> documents directory instead. You can change this by navigating to
8282
> another directory the first time you "Save As..."
8383
{: .callout}
@@ -88,7 +88,7 @@ Once we're happy with our text, we can press <kbd>Ctrl</kbd>-<kbd>O</kbd> (press
8888
holding it down, press the <kbd>O</kbd> key) to write our data to disk. You'll be asked what file we want to save this to:
8989
press <kbd>Return</kbd> to accept the suggested default of `README.txt`.
9090

91-
Once our file is saved, we can use <kbd>Ctrl</kbd>-<kbd>X</kbd> to quit the editor and
91+
Once our file is saved, we can use <kbd>Ctrl</kbd>-<kbd>X</kbd> to quit the `nano` editor and
9292
return to the shell.
9393

9494
> ## Control, Ctrl, or ^ Key
@@ -182,7 +182,7 @@ It will look like nothing happened, but now if you look at `scripted_bad_reads.t
182182
183183
## Making the script into a program
184184
185-
We had to type `bash` because we needed to tell the computer what program to use to run this script. Instead, we can turn this script into its own program. We need to tell it that it's a program by making it executable. We can do this by changing the file permissions. We talked about permissions in [an earlier episode](http://www.datacarpentry.org/shell-genomics/03-working-with-files/).
185+
We had to type `bash` because we needed to tell the computer what program to use to run this script. Instead, we can turn this script into its own program. We need to tell the computer that this script is a program by making the script file executable. We can do this by changing the file permissions. We talked about permissions in [an earlier episode](http://www.datacarpentry.org/shell-genomics/03-working-with-files/).
186186
187187
First, let's look at the current permissions.
188188

0 commit comments

Comments
 (0)