Skip to content

Commit 5f743a4

Browse files
sovdeethgitbook-bot
authored andcommitted
GITBOOK-71: change request with no subject merged in GitBook
1 parent e5a07cd commit 5f743a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-concepts/variables/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set {hey, what's going on} to "not much, what about you?"
1616

1717
Variables can have nearly any name you like. They have have spaces, dashes, symbols, whatever. You can put the whole Bee Movie script into a variable name, if you so choose. There are a few special ways to name variables though.
1818

19-
By default, variables are `global`, which means they can be seen and changed by any part of your script. Often we want variables to exist only in a small section of script, which is achieved by `local` variables, with begin with `_`, like `{_variable}`. We'll get further into this difference in the [Global and Local page](global-and-local.md).
19+
By default, variables are `global`, which means they can be seen and changed by any part of your script. Often we want variables to exist only in a small section of script, which can be achieved by `local` variables (those that begin with `_`, like `{_variable}`). We'll get further into this difference in the Global and Local page.
2020

2121
### Using Variables
2222

0 commit comments

Comments
 (0)