Skip to content

e.g. and i.e. look nicer than eg and ie #3748

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 1, 2014
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ie, to i.e.,
Used:

```bash
find * -type f -exec sed -i 's/\bie,/i.e.,/g' {} \;
```
  • Loading branch information
yuvallanger committed Nov 1, 2014
commit 3b9ef1383d6f45d7dd094d980083e06eee3023e7
2 changes: 1 addition & 1 deletion doc/users/pyplot_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ numcols, fignum`` where ``fignum`` ranges from 1 to
``numrows*numcols``. The commas in the ``subplot`` command are
optional if ``numrows*numcols<10``. So ``subplot(211)`` is identical
to ``subplot(2,1,1)``. You can create an arbitrary number of subplots
and axes. If you want to place an axes manually, ie, not on a
and axes. If you want to place an axes manually, i.e., not on a
rectangular grid, use the :func:`~matplotlib.pyplot.axes` command,
which allows you to specify the location as ``axes([left, bottom,
width, height])`` where all values are in fractional (0 to 1)
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/afm.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def get_str_bbox(self, s):

def get_name_char(self, c, isord=False):
"""
Get the name of the character, ie, ';' is 'semicolon'
Get the name of the character, i.e., ';' is 'semicolon'
"""
if not isord:
c = ord(c)
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/mlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -1622,7 +1622,7 @@ def prepca(P, frac=0):

- *Pcomponents* : a (numVars, numObs) array

- *Trans* : the weights matrix, ie, *Pcomponents* = *Trans* *
- *Trans* : the weights matrix, i.e., *Pcomponents* = *Trans* *
*P*

- *fracVar* : the fraction of the variance accounted for by each
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_mlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -2906,7 +2906,7 @@ def test_evaluate_diff_dim(self):
np.testing.assert_array_almost_equal(y, y_expected, 7)

def test_evaluate_inv_dim(self):
""" Invert the dimensions. ie, Give the dataset a dimension of
""" Invert the dimensions. i.e., Give the dataset a dimension of
1 [3,2,4], and the points will have a dimension of 3 [[3],[2],[4]].
ValueError should be raised"""
np.random.seed(8765678)
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -1703,7 +1703,7 @@ def __init__(self, s, xy,
annotated. If *d* is the distance between the text and
annotated point, shrink will shorten the arrow so the tip
and base are shink percent of the distance *d* away from
the endpoints. ie, ``shrink=0.05 is 5%%``
the endpoints. i.e., ``shrink=0.05 is 5%%``
? any key for :class:`matplotlib.patches.polygon`
========= ===========================================================

Expand Down