diff options
author | 2020-05-17 14:19:10 +0300 | |
---|---|---|
committer | 2020-05-17 14:19:10 +0300 | |
commit | d390fb257011f9c5cdd7e6d35a1b194303aa9e5d (patch) | |
tree | ebcbdfae692dd64194d6cfd671f2f9ebbe980eb2 | |
parent | Rename `string` to `greeting` (diff) |
Fix incomplete variable renaming
-rw-r--r-- | bot/resources/tags/mutability.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/mutability.md b/bot/resources/tags/mutability.md index ef2f47403..bde9b5e7e 100644 --- a/bot/resources/tags/mutability.md +++ b/bot/resources/tags/mutability.md @@ -11,7 +11,7 @@ You might think that this would work: 'hello' ``` -`string` didn't change. Why is that so? +`greeting` didn't change. Why is that so? That's because strings in Python are _immutable_. You can't change them, you can only pass around existing strings or create new ones. |