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