Adds missing newline & grammatical corrections (#326)

* Adds missing newline

Without the newline the TODO is not being understood by Sphinx

* Grammatical correction

Adds a missing comma

* Grammatical correction

* Grammatical correction
This commit is contained in:
Vivek Kodira
2017-02-12 22:53:01 +05:30
committed by Mike Fiedler
parent 21d364d3c5
commit 0a0933995c
3 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ Workflow
What is a package manager?
==========================
Modern operating systems use package managers to take care of the installation
Modern operating systems use package managers to take care of the installation,
maintenance and removal of software. On Windows this is `Windows Installer
<http://en.wikipedia.org/wiki/Windows_Installer>`_ (formerly Microsoft
Installer). On Linux there are two popular package managers:
@@ -26,7 +26,7 @@ same functionality:
RPM and yum (RedHat, CentOS, Fedora, Scientific Linux)
======================================================
In the following examples, we will be using the package ``dstat`` in our examples. The
In the following examples, we will be using the package ``dstat``. The
process however applies to any software you may want to install.
Yum provides a wrapper around RPM, which can be used to search for, and install

View File

@@ -604,7 +604,7 @@ The ``END`` pattern tells ``awk`` what to do after all lines in the file have be
In our case, that involves printing out the average age of all students.
To get the average age, the sum of all ages (stored in variable ``sum``) was divided by the total number of lines in the file, represented by ``NR``.
In addition to the ``END`` pattern, ``awk`` also provides a ``BEGIN`` pattern, which describes an action that needs to be taken before a the first line of the file is processed.
In addition to the ``END`` pattern, ``awk`` also provides a ``BEGIN`` pattern, which describes an action that needs to be taken before the first line of the file is processed.
For example:

View File

@@ -26,6 +26,7 @@ this scenario easier: the command-line editing mode.
The command-line editing mode emulates the movement functions of two common text editors,
``emacs`` and ``vi``. In the case of the shell, the cursor's movement is being controlled.
.. todo:: Tighten up the above sentence. It's wordy and doesn't seem to make the point I want it to make.
By default, ``bash`` operates in ``emacs`` mode.