aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Steele Farnsworth <[email protected]>2021-02-06 16:52:36 -0500
committerGravatar GitHub <[email protected]>2021-02-06 16:52:36 -0500
commit9a9eb8fc6f62ac8527f08cba6f72537c13522291 (patch)
tree03aeb45085d3f37174f2cfefa678dbdd79662a8a
parentRemoved extra blank line. (diff)
"handle converting" -> "convert ... for you".
Per Gustav's suggestion. Co-authored-by: Gustav Odinger <[email protected]>
-rw-r--r--bot/resources/tags/f-strings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/f-strings.md b/bot/resources/tags/f-strings.md
index 4f12640aa..5ccafe723 100644
--- a/bot/resources/tags/f-strings.md
+++ b/bot/resources/tags/f-strings.md
@@ -6,4 +6,4 @@ Creating a Python string with your variables using the `+` operator can be diffi
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."
```
-Note that even when you include an expression that isn't a string, like `number * 2`, Python will handle converting it to a string.
+Note that even when you include an expression that isn't a string, like `number * 2`, Python will convert it to a string for you.