Skip to content

Commit fa5c518

Browse files
raskadnekevss
andauthored
Update blog/2024-10-01-local-variables.md
Co-authored-by: Kevin Ness <[email protected]>
1 parent 417e717 commit fa5c518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blog/2024-10-01-local-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ In this example, our two variables have different identifiers.
6363
Notice that when we access the variable `a` from the block scope, its value is resolved as expected.
6464
This is because scopes are nested.
6565
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.
66+
In this case, we have to look for `a` in the block scope and then in the global scope.
6767

6868
Let's look at a more complex example:
6969

0 commit comments

Comments
 (0)