From 8d47ea7d2f39678faaa34bd80b784c5c26f79819 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Mon, 31 Jan 2022 10:23:27 +0100 Subject: [PATCH] Fix doc comment --- Source/Engine/Core/Collections/Array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Core/Collections/Array.h b/Source/Engine/Core/Collections/Array.h index aff5ec530..53a0ccea8 100644 --- a/Source/Engine/Core/Collections/Array.h +++ b/Source/Engine/Core/Collections/Array.h @@ -547,8 +547,8 @@ public: /// /// Adds the new items to the end of the collection, possibly reallocating the whole collection to fit. The new items will be zeroed. /// - /// Warning! AddZeroed() will create items without calling the constructor and this is not appropriate for item types that require a constructor to function properly. /// + /// Warning! AddZeroed() will create items without calling the constructor and this is not appropriate for item types that require a constructor to function properly. /// /// The number of new items to add. void AddZeroed(int32 count = 1)