Skip to content

Commit

Permalink
Replace 'iff' with 'if and only if' in pynatmath.h.
Browse files Browse the repository at this point in the history
This is commonly mistaken as a typo but is simply shorthand that I think
is unknown in many parts of the world.  See here for more information:

https://en.wikipedia.org/wiki/If_and_only_if#Origin_of_iff_and_pronunciation
  • Loading branch information
dcantrell committed Feb 1, 2019
1 parent d69fcf6 commit 825a79e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/docstrings/pynatmath.h
Expand Up @@ -35,11 +35,11 @@ PyDoc_STRVAR(alignment_duplicate_doc,
PyDoc_STRVAR(alignment_intersect_doc,
"intersect(self, Alignment) -> _ped.Alignment\n\n"
"Create a new Alignment that describes the intersection of self and\n"
"Alignment. A sector will satisfy the new Alignment iff it satisfies both\n"
"of the original alignments, where 'satisfy' is determined by is_aligned().\n"
"The proof of this is relatively complicated and is described thoroughly\n"
"in the libparted source. This method raises ArithmeticError if no\n"
"intersection can be found.");
"Alignment. A sector will satisfy the new Alignment if and only if it\n"
"satisfies both of the original alignments, where 'satisfy' is determined\n"
"by is_aligned(). The proof of this is relatively complicated and is\n"
"described thoroughly in the libparted source. This method raises\n"
"ArithmeticError if no intersection can be found.");

PyDoc_STRVAR(alignment_align_up_doc,
"align_up(self, Geometry, Sector) -> Sector\n\n"
Expand Down

0 comments on commit 825a79e

Please sign in to comment.