Skip to content

Commit 434343d

Browse files
Fix typo
1 parent fafbc51 commit 434343d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/01.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ The first advantage of the command line is that it allows you to be agile. Data
136136

137137
First, the command line provides a so-called read-eval-print-loop (REPL). This means that you type in command, press **<Enter>**, and the command is evaluated immediately. A REPL is often much more convenient for doing data science than the edit-compile-run-debug cycle associated with scripts, large programs, and, say, Hadoop jobs. Your commands are executed immediately, may be stopped at will, and can be changed quickly. This short iteration cycle really allows you to play with your data.
138138

139-
Second, the command line is very close to the filesystem. Because data is the main ingredient for doing data science, it is important to be able to easily work with the files that contain your data set. The command line offers many convenient tools for this.
139+
Second, the command line is very close to the file system. Because data is the main ingredient for doing data science, it is important to be able to easily work with the files that contain your data set. The command line offers many convenient tools for this.
140140

141141
### The Command Line is Augmenting
142142

book/02.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ $ cd data
388388
$ mkdir logs
389389
```
390390

391-
Using the command-line tools to manage your files can be scary at first, because you have no graphical overview of the filesystem to provide immediate feedback.
391+
Using the command-line tools to manage your files can be scary at first, because you have no graphical overview of the file system to provide immediate feedback.
392392

393393
All of the above command-line tools accept the `-v` option, which stands for verbose, so that they output what’s going on. All but `mkdir` accept the `-i` option, which stands for interactive, and causes the tools to ask you for confirmation.
394394

0 commit comments

Comments
 (0)