aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar brody critchlow <[email protected]>2023-03-29 23:16:53 -0600
committerGravatar brody critchlow <[email protected]>2023-03-29 23:16:53 -0600
commit96bb34468e50c3cb424e0eeb53eb49e0e4abb6ad (patch)
tree8ab4270175412646c495e39859457acbb5498610
parentMerge branch 'main' into inplace-tag (diff)
Fix InPlace precommit issues
-rw-r--r--bot/resources/tags/in-place.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/in-place.md b/bot/resources/tags/in-place.md
index 2813b9e57..e2218a7df 100644
--- a/bot/resources/tags/in-place.md
+++ b/bot/resources/tags/in-place.md
@@ -5,7 +5,7 @@ embed:
In programming, there are two types of operations: "out of place" operations create a new object, leaving the original object unchanged. "in place" operations modify the original object without creating a new one, and return `None` explicitly.
-A common example of these different concepts is seen in the use of the methods `list.sort()` and `sorted(...)`. Using `list.sort()` and attempting to access an element of the list will result in an error.
+A common example of these different concepts is seen in the use of the methods `list.sort()` and `sorted(...)`. Using `list.sort()` and attempting to access an element of the list will result in an error.
```py
# WRONG: