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)