Skip to content

Commit

Permalink
Replace word: variable -> value
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-v-diaz authored Nov 28, 2017
1 parent 5b03579 commit 8adefe0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -682,9 +682,9 @@ print("Hello, Mr. " + surname)
```

The majority of static analysis tools complain if a variable is assigned but not used thereafter.
By convention, unused variables are assigned to `i`, `j`, `k`, and `_` (underscore character) and
understood as such. However, we think `junk` is more readable than `_` and easier for newcomers
to understand.
By convention, unused values are assigned to `i`, `j`, `k`, and `_` (underscore character) and
are understood as such. However, we think `junk` is more readable than `_` and easier for
newcomers to understand.

### Exception Names ###

Expand Down

0 comments on commit 8adefe0

Please sign in to comment.