Skip to content

Commit

Permalink
Merge pull request #455 from buster-blue/patch-1
Browse files Browse the repository at this point in the history
Fix grammar (an → a)
  • Loading branch information
mtshiba authored Sep 4, 2023
2 parents 5ca3cd2 + f70aa55 commit 8c02e2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/EN/syntax/02_name.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ X = 1 # OK
X = !1 # TypeError: cannot define Int! object as a constant
```

## Delete an Variable
## Delete a Variable

You can delete an variable by using the `Del` function. All other variables that depend on the variable (that is, that refer directly to the value of the variable) are also removed.
You can delete a variable by using the `Del` function. All other variables that depend on the variable (that is, that refer directly to the value of the variable) are also removed.

```python,checker_ignore
x = 1
Expand Down

0 comments on commit 8c02e2d

Please sign in to comment.