aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar decorator-factory <[email protected]>2020-05-17 13:34:27 +0300
committerGravatar GitHub <[email protected]>2020-05-17 13:34:27 +0300
commitabb9e57f7022d87f762660d10c83b7912483b873 (patch)
treed1839e490c30587ddad1d243d0b4ed83577fc8ef
parentChange standalone programs to interactive sessions (diff)
Add a note on user-defined classes
-rw-r--r--bot/resources/tags/mutability.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/mutability.md b/bot/resources/tags/mutability.md
index 8b98da43a..3447109ad 100644
--- a/bot/resources/tags/mutability.md
+++ b/bot/resources/tags/mutability.md
@@ -34,4 +34,4 @@ Mutable data types like `list`, on the other hand, can be changed in-place:
[1, 2, 3, 4]
```
-Other examples of mutable data types in Python are `dict` and `set`.
+Other examples of mutable data types in Python are `dict` and `set`. Instances of user-defined classes are also mutable.