Fix a few docstring typos

This commit is contained in:
rdb 2021-12-12 17:07:43 +01:00
parent ec2084c23e
commit 215ad6bfd9
4 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@
#ifdef HAVE_PYTHON #ifdef HAVE_PYTHON
/** /**
* Extends GraphicsWindowProc to provde callback functionality to a python * Extends GraphicsWindowProc to provide callback functionality to a Python
* program. * program.
*/ */
class PythonGraphicsWindowProc: public GraphicsWindowProc, class PythonGraphicsWindowProc: public GraphicsWindowProc,

View File

@ -224,7 +224,7 @@ private:
S_raw_mice = 0x08000, S_raw_mice = 0x08000,
}; };
// This bitmask represents the truefalse settings for various boolean flags // This bitmask represents the true/false settings for various boolean flags
// (assuming the corresponding S_* bit has been set, above). // (assuming the corresponding S_* bit has been set, above).
enum Flags { enum Flags {
F_undecorated = S_undecorated, F_undecorated = S_undecorated,

View File

@ -351,7 +351,7 @@ clear_custom_film_mat() {
* nearly perpendicular to the center of the frustum as possible. Without * nearly perpendicular to the center of the frustum as possible. Without
* this bit, the orientation camera plane is defined by position of the four * this bit, the orientation camera plane is defined by position of the four
* points (which should all be coplanar). With this bit, the camera plane is * points (which should all be coplanar). With this bit, the camera plane is
* arbitarary, and may be chosen so that the four points do not themselves lie * arbitrary, and may be chosen so that the four points do not themselves lie
* in the camera plane (but the points will still be within the frustum). * in the camera plane (but the points will still be within the frustum).
* *
* FC_off_axis - This allows the resulting frustum to be off-axis to get the * FC_off_axis - This allows the resulting frustum to be off-axis to get the

View File

@ -23,7 +23,7 @@
/** /**
* This is a specialization on CallbackObject to allow a callback to directly * This is a specialization on CallbackObject to allow a callback to directly
* call an arbitarary Python function. Powerful! But use with caution. * call an arbitrary Python function. Powerful! But use with caution.
*/ */
class PythonCallbackObject : public CallbackObject { class PythonCallbackObject : public CallbackObject {
PUBLISHED: PUBLISHED: