summaryrefslogtreecommitdiffstats
path: root/tests/core/variant/test_array.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-01-08 11:55:55 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-01-08 11:55:55 +0100
commitc10d268974744dadb454154d1ad78209735b7ccd (patch)
tree9fa7b97428a0100724355fb97d63edf01429802f /tests/core/variant/test_array.h
parentdd487ebb0b34fa295c8f9290c2ccd252028b6b2d (diff)
parentf9826a1dd7604900f440493f4630563097c699ee (diff)
downloadredot-engine-c10d268974744dadb454154d1ad78209735b7ccd.tar.gz
Merge pull request #86787 from ryevdokimov/code-spell-check
Fix various spelling errors across engine solution
Diffstat (limited to 'tests/core/variant/test_array.h')
-rw-r--r--tests/core/variant/test_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/variant/test_array.h b/tests/core/variant/test_array.h
index 228d77b3b5..ea61ae2a02 100644
--- a/tests/core/variant/test_array.h
+++ b/tests/core/variant/test_array.h
@@ -367,7 +367,7 @@ TEST_CASE("[Array] Duplicate recursive array") {
Array a_shallow = a.duplicate(false);
CHECK_EQ(a, a_shallow);
- // Deep copy of recursive array endup with recursion limit and return
+ // Deep copy of recursive array ends up with recursion limit and return
// an invalid result (multiple nested arrays), the point is we should
// not end up with a segfault and an error log should be printed
ERR_PRINT_OFF;