From f266f83729cc018171cf051b4508b8ce41f1ea7f Mon Sep 17 00:00:00 2001 From: DH Date: Fri, 27 Feb 2026 20:41:05 -0500 Subject: [PATCH] Small changes to save credentials. --- typefactory/typefactory.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typefactory/typefactory.h b/typefactory/typefactory.h index 68e4dc1..235116f 100644 --- a/typefactory/typefactory.h +++ b/typefactory/typefactory.h @@ -16,9 +16,9 @@ * - Re-registering the same id overwrites the previous entry ("last wins"). * - ClassId must be hashable (std::hash specialization must exist). * - * @tparam ClassId Unique class identifier type (e.g. std::string, int, enum). - * @tparam BaseClass Base type for all created objects. - * @tparam Args Constructor arguments forwarded to registered derived types (by value). + * @tparam ClassId -Unique class identifier type (e.g. std::string, int, enum). + * @tparam BaseClass -Base type for all created objects. + * @tparam Arg - Constructor arguments forwarded to registered derived types (by value). * * Usage example: * @code