From a02919077c0c2bfcb102d052d405c42d3e3200d5 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Tue, 21 Jul 2026 20:32:36 +0200 Subject: [PATCH] Fix example Fix text to match the example. --- spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.md b/spec.md index b99b3c6..982cd18 100644 --- a/spec.md +++ b/spec.md @@ -1484,7 +1484,7 @@ Four Starlark constructs bind names, as illustrated in the example below: `load` statements (`a` and `b`), `def` statements (`c`), function parameters (`d`), -and assignments (`e`, `h`, including the augmented assignment `e += h`). +and assignments (`e`, `h`, including the augmented assignment `e += 1`). Variables may be assigned or re-assigned explicitly (`e`, `h`), or implicitly, as in a `for` statement (`f`) or comprehension `for` clause (`g`, `i`).