From fb7c83d04dc27e7279d516951acac6236955f9df Mon Sep 17 00:00:00 2001 From: DH Date: Fri, 27 Feb 2026 19:46:33 -0500 Subject: [PATCH] Spell checking --- typefactory/typefactory.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typefactory/typefactory.h b/typefactory/typefactory.h index ff95070..dda313e 100644 --- a/typefactory/typefactory.h +++ b/typefactory/typefactory.h @@ -42,7 +42,7 @@ * . * . * . - * TypeFsactory typefactory; + * TypeFactory typefactory; * typefactory.registerType("one"); * typefactory.registerType("2"); * @@ -54,7 +54,7 @@ * @endcode */ template -class TypeFsactory { +class TypeFactory { public: typedef std::shared_ptr BaseClass_SP; /** @@ -62,7 +62,7 @@ class TypeFsactory { */ typedef BaseClass_SP (*typefactoryFunction) (Args ...); - TypeFsactory() = default; + TypeFactory() = default; /** * @brief registerType - template function to register class in factory