Update /14-function-basics/article.md
Type line 131, sentence 2; corrected. FYI same line makes no sense in English, I cannot offer an edit for meaning intended.
This commit is contained in:
parent
028b80cf9d
commit
fce9639096
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ Variables declared outside of any function, such as the outer `userName` in the
|
|||
|
||||
Global variables are visible from any function (unless shadowed by locals).
|
||||
|
||||
Usually, a function declares all variables specific to its task. Global variables only store project-level data, so when it's important that these variables are accesible from anywhere. Modern code has few or no globals. Most variables reside in their functions.
|
||||
Usually, a function declares all variables specific to its task. Global variables only store project-level data, so when it's important that these variables are accessible from anywhere. Modern code has few or no globals. Most variables reside in their functions.
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue