diff --git a/panda/src/display/pythonGraphicsWindowProc.h b/panda/src/display/pythonGraphicsWindowProc.h index 902cb83fb7..0f5128b18a 100644 --- a/panda/src/display/pythonGraphicsWindowProc.h +++ b/panda/src/display/pythonGraphicsWindowProc.h @@ -21,7 +21,7 @@ #ifdef HAVE_PYTHON /** - * Extends GraphicsWindowProc to provde callback functionality to a python + * Extends GraphicsWindowProc to provide callback functionality to a Python * program. */ class PythonGraphicsWindowProc: public GraphicsWindowProc, diff --git a/panda/src/display/windowProperties.h b/panda/src/display/windowProperties.h index 82dcbb5358..11a9e439c7 100644 --- a/panda/src/display/windowProperties.h +++ b/panda/src/display/windowProperties.h @@ -224,7 +224,7 @@ private: 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). enum Flags { F_undecorated = S_undecorated, diff --git a/panda/src/gobj/lens.cxx b/panda/src/gobj/lens.cxx index 6fabc0cf8f..989e501806 100644 --- a/panda/src/gobj/lens.cxx +++ b/panda/src/gobj/lens.cxx @@ -351,7 +351,7 @@ clear_custom_film_mat() { * nearly perpendicular to the center of the frustum as possible. Without * 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 - * 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). * * FC_off_axis - This allows the resulting frustum to be off-axis to get the diff --git a/panda/src/putil/pythonCallbackObject.h b/panda/src/putil/pythonCallbackObject.h index d7757813db..5219146c9b 100644 --- a/panda/src/putil/pythonCallbackObject.h +++ b/panda/src/putil/pythonCallbackObject.h @@ -23,7 +23,7 @@ /** * 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 { PUBLISHED: