We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 417e717 commit fa5c518Copy full SHA for fa5c518
blog/2024-10-01-local-variables.md
@@ -63,7 +63,7 @@ In this example, our two variables have different identifiers.
63
Notice that when we access the variable `a` from the block scope, its value is resolved as expected.
64
This is because scopes are nested.
65
When we cannot find a variable in the current scope, we look for the same identifier in the outer scope.
66
-In this case we have to look for `a` in the block scope and then in the global scope.
+In this case, we have to look for `a` in the block scope and then in the global scope.
67
68
Let's look at a more complex example:
69
0 commit comments