Cleanup: remove double spaces after a full-stop

This commit is contained in:
Campbell Barton
2023-07-13 13:40:25 +10:00
parent f8dea82aaa
commit ef1ddbaaca
73 changed files with 213 additions and 213 deletions

View File

@@ -54,12 +54,12 @@ int UnaryFunction1D_Init(PyObject *module)
static char UnaryFunction1D___doc__[] =
"Base class for Unary Functions (functors) working on\n"
":class:`Interface1D`. A unary function will be used by invoking\n"
"__call__() on an Interface1D. In Python, several different subclasses\n"
":class:`Interface1D`. A unary function will be used by invoking\n"
"__call__() on an Interface1D. In Python, several different subclasses\n"
"of UnaryFunction1D are used depending on the types of functors' return\n"
"values. For example, you would inherit from a\n"
"values. For example, you would inherit from a\n"
":class:`UnaryFunction1DDouble` if you wish to define a function that\n"
"returns a double value. Available UnaryFunction1D subclasses are:\n"
"returns a double value. Available UnaryFunction1D subclasses are:\n"
"\n"
"* :class:`UnaryFunction1DDouble`\n"
"* :class:`UnaryFunction1DEdgeNature`\n"