aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-08-15 13:52:18 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2014-08-15 13:52:18 -0400
commite386bae99ae7608d53c8ad180885ec61410a64ea (patch)
tree0d6df8ff32c4933393e7472815b62afe39510a38
parent5c137de338eed45733967566c9e34d9bd760ed10 (diff)
downloadtabletext-e386bae99ae7608d53c8ad180885ec61410a64ea.tar.gz
Rewording of the help
-rw-r--r--README.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index cab78db..b876959 100644
--- a/README.rst
+++ b/README.rst
@@ -26,9 +26,9 @@ Library
~~~~~~~
``tabletext`` exposes a single function, ``to_text`` which in its simplest form
-takes a list of list (or any sequence_ of sequences_) and format it as a table.
-The data is assumed to be in `row-major order`_, meaning that the outer
-sequence's elements are the rows of the table.
+takes a list of lists (or any sequence_ of sequences_) and format it as
+a table. The data is assumed to be in `row-major order`_, meaning that the
+outer sequence's elements are the rows of the table.
.. _row-major order: https://en.wikipedia.org/wiki/Row-major_order
.. _sequence:
@@ -93,9 +93,9 @@ the ``to_text`` function.
Command line utility
~~~~~~~~~~~~~~~~~~~~
-The command line utility reads from its input the table, each line representing
-a row, its entries being separated by ``\t`` characters (configurable) and
-outputs the formatted table to the standard output:
+The command line utility reads the table from its input, each line representing
+a row, the row's entries being separated by ``\t`` characters (configurable),
+and outputs the formatted table to the standard output:
.. code:: bash