Skip to content

Commit

Permalink
Adds missing newline & grammatical corrections (#326)
Browse files Browse the repository at this point in the history
* Adds missing newline

Without the newline the TODO is not being understood by Sphinx

* Grammatical correction

Adds a missing comma

* Grammatical correction

* Grammatical correction
  • Loading branch information
vivekKodira authored and miketheman committed Feb 12, 2017
1 parent 21d364d commit 0a09339
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package_management_101.rst
Expand Up @@ -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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion shell_tools_101.rst
Expand Up @@ -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:

Expand Down
1 change: 1 addition & 0 deletions shells_101.rst
Expand Up @@ -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.
Expand Down

0 comments on commit 0a09339

Please sign in to comment.