Merge pull request #762 from thisLinda/patch-2

Update /14-function-basics/article.md
This commit is contained in:
Ilya Kantor 2019-01-27 19:32:53 +03:00 committed by GitHub
commit f7fbe4f606
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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