From 045eafd062c36ffaa038e0c7bded87b9bf8f2c2b Mon Sep 17 00:00:00 2001 From: Uwe Date: Sat, 12 Mar 2022 02:19:48 +0100 Subject: [PATCH] [CXX] fix typos found by the spellchecker CI --- src/CXX/Python3/ExtensionTypeBase.hxx | 2 +- src/CXX/Python3/cxx_extensions.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CXX/Python3/ExtensionTypeBase.hxx b/src/CXX/Python3/ExtensionTypeBase.hxx index cff167d035..2b9fa129ae 100644 --- a/src/CXX/Python3/ExtensionTypeBase.hxx +++ b/src/CXX/Python3/ExtensionTypeBase.hxx @@ -42,7 +42,7 @@ namespace Py { // Class PythonExtension is what you inherit from to create // a new Python extension type. You give your class itself - // as the template paramter. + // as the template parameter. // There are two ways that extension objects can get destroyed. // 1. Their reference count goes to zero diff --git a/src/CXX/Python3/cxx_extensions.cxx b/src/CXX/Python3/cxx_extensions.cxx index d4e597f5e7..00527d059e 100644 --- a/src/CXX/Python3/cxx_extensions.cxx +++ b/src/CXX/Python3/cxx_extensions.cxx @@ -295,7 +295,7 @@ PythonType &PythonType::supportSequenceType() sequence_table->sq_repeat = sequence_repeat_handler; sequence_table->sq_item = sequence_item_handler; - sequence_table->sq_ass_item = sequence_ass_item_handler; // BAS setup seperately? + sequence_table->sq_ass_item = sequence_ass_item_handler; // BAS setup separately? // QQQ sq_inplace_concat // QQQ sq_inplace_repeat } @@ -311,7 +311,7 @@ PythonType &PythonType::supportMappingType() table->tp_as_mapping = mapping_table; mapping_table->mp_length = mapping_length_handler; mapping_table->mp_subscript = mapping_subscript_handler; - mapping_table->mp_ass_subscript = mapping_ass_subscript_handler; // BAS setup seperately? + mapping_table->mp_ass_subscript = mapping_ass_subscript_handler; // BAS setup separately? } return *this; }