From 742ec27210d4e8a3edb3eeffd6bcd06afac24f61 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 11 Jun 2020 09:07:17 -0700 Subject: [PATCH] docs: Wording --- docs/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax.md b/docs/syntax.md index 3ed998d5..d0da2a18 100644 --- a/docs/syntax.md +++ b/docs/syntax.md @@ -103,7 +103,7 @@ a[foo()] = a[foo()] + 1 a[foo()] += 1 ``` -Compound assignments call the arithmetic metamethods (`__add` et al) and table indexing metamethods (`__index` and `__newindex`) as necessary - for custom types no extra effort is necessary to support them. +Compound assignments call the arithmetic metamethods (`__add` et al) and table indexing metamethods (`__index` and `__newindex`) as needed - for custom types no extra effort is necessary to support them. Type annotations ================