From 825a79eb989a2830024e4fd7295a5bf4b1af710f Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Fri, 1 Feb 2019 14:18:42 -0500 Subject: [PATCH] Replace 'iff' with 'if and only if' in pynatmath.h. 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 --- include/docstrings/pynatmath.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/docstrings/pynatmath.h b/include/docstrings/pynatmath.h index b2f230b8..8d177bed 100644 --- a/include/docstrings/pynatmath.h +++ b/include/docstrings/pynatmath.h @@ -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"