From cd58a8336cf10e281fee2368034fc0f04e066589 Mon Sep 17 00:00:00 2001 From: Uwe Date: Sat, 12 Mar 2022 02:07:38 +0100 Subject: [PATCH] [CXX] fix typos reported by the spellchecker CI --- src/CXX/Python3/Objects.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CXX/Python3/Objects.hxx b/src/CXX/Python3/Objects.hxx index d86cd138a1..09533e3c9b 100644 --- a/src/CXX/Python3/Objects.hxx +++ b/src/CXX/Python3/Objects.hxx @@ -479,7 +479,7 @@ namespace Py return Object( Py::_True() ); } - // TMM: 31May'01 - Added the #ifndef so I can exlude iostreams. + // TMM: 31May'01 - Added the #ifndef so I can exclude iostreams. #ifndef CXX_NO_IOSTREAMS PYCXX_EXPORT std::ostream &operator<<( std::ostream &os, const Object &ob ); #endif @@ -1075,7 +1075,7 @@ namespace Py // seqref is what you get if you get elements from a non-const SeqBase. // Note: seqref could probably be a nested class in SeqBase but that might stress - // some compilers needlessly. Simlarly for mapref later. + // some compilers needlessly. Similarly for mapref later. // While this class is not intended for enduser use, it needs some public // constructors for the benefit of the STL. @@ -1403,7 +1403,7 @@ namespace Py return SeqBase( PySequence_Concat( ptr(), *other ), true ); } - // more STL compatability + // more STL compatibility const T front() const { return getItem( 0 );