Fix typo in table iterator invalidation test comment

Co-authored-by: Tim Wojtulewicz <tim@corelight.com>
This commit is contained in:
Jon Siwek 2020-12-14 10:42:37 -08:00 committed by GitHub
parent 8f98b068c8
commit b0505277ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@
local t = table([1] = "one", [2] = "two", [3] = "three");
for ( i in t )
# Modifying an existing element is not qualified an modifying membership,
# Modifying an existing element is not qualified as modifying membership,
# so this doesn't trigger a warning.
t[i] = cat(i);