@@ -176,7 +176,7 @@ extensions](http://johnmacfarlane.net/pandoc/README.html#tables):
176
176
eggs 451
177
177
bacon 0
178
178
179
- ` github ` follows the conventions of Github flavored Markdown. It
179
+ ` github ` follows the conventions of GitHub flavored Markdown. It
180
180
corresponds to the ` pipe ` format without alignment colons:
181
181
182
182
>>> print(tabulate(table, headers, tablefmt="github"))
@@ -668,9 +668,9 @@ as a number imply that `tabulate`:
668
668
It may not be suitable for serializing really big tables (but who's
669
669
going to do that, anyway?) or printing tables in performance sensitive
670
670
applications. ` tabulate ` is about two orders of magnitude slower than
671
- simply joining lists of values with a tab, coma or other separator.
671
+ simply joining lists of values with a tab, comma, or other separator.
672
672
673
- In the same time ` tabulate ` is comparable to other table
673
+ At the same time, ` tabulate ` is comparable to other table
674
674
pretty-printers. Given a 10x10 table (a list of lists) of mixed text and
675
675
numeric data, ` tabulate ` appears to be slower than ` asciitable ` , and
676
676
faster than ` PrettyTable ` and ` texttable ` The following mini-benchmark
@@ -714,7 +714,7 @@ On Linux `tox` expects to find executables like `python2.6`,
714
714
` C:\Python26\python.exe ` , ` C:\Python27\python.exe ` and
715
715
` C:\Python34\python.exe ` respectively.
716
716
717
- To test only some Python environements , use ` -e ` option. For example, to
717
+ To test only some Python environments , use ` -e ` option. For example, to
718
718
test only against Python 2.7 and Python 3.6, run:
719
719
720
720
tox -e py27,py36
0 commit comments