From 011387de525e525b8afd6b0e540fe01edb94550d Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Wed, 29 Jan 2025 10:10:47 +0100 Subject: [PATCH] fix a comment --- Source/SenseGloveUtils/Public/SGUtils/SGArrayUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/SenseGloveUtils/Public/SGUtils/SGArrayUtils.h b/Source/SenseGloveUtils/Public/SGUtils/SGArrayUtils.h index f4762dfb..f1988dc5 100644 --- a/Source/SenseGloveUtils/Public/SGUtils/SGArrayUtils.h +++ b/Source/SenseGloveUtils/Public/SGUtils/SGArrayUtils.h @@ -59,7 +59,7 @@ public: } /// NOTE - /// std::vector is a non conforming container. Since it packs bools to be stored in one bit, + /// std::vector is a non-conforming container. Since it packs booleans to be stored in one bit, /// it cannot provide a bool reference. Thus, FSGArrayUtils::FromStdVector() cannot be used. /// Hence, the specialization. static TArray FromStdVector(const std::vector& Vector)