diff --git a/README.md b/README.md index 2374785..8b4fd52 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Examples of Voxel programs can be found in the [`examples`](examples) and [`test ## Key features of the Voxel programming language * **Functions** — named and anonymous - * **Closures** that allow references to non-global variables outside a function's scope + * **Closures** that allow access to non-global variables outside a function's scope * [**Spread and rest syntax (`...`)**](docs/en/voxel/spreadrest.md) to dynamically provide argument values to functions and allow functions to become variadic * [**Expressions**](docs/en/voxel/expressions.md) that follow a defined operator precedence * **Short-circuit evaluation** of logical operators using `&&` and `||` (evaluation of subsequent operands is aborted if result's value is guaranteed to be `true` or `false`)