Skip to content

Commit 0068388

Browse files
valentin-pBethanyG
andcommitted
Update concepts/string-methods/introduction.md
Co-authored-by: BethanyG <BethanyG@users.noreply.github.com>
1 parent 41c5e75 commit 0068388

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concepts/string-methods/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ These methods can be used for cleaning, splitting, translating, or otherwise wor
33
Strings can be concatenated using the `+` operator or with `str.join()`.
44
Strings also implement all of the common operations for a sequence and can be iterated using the syntax: `for item in <string>`.
55

6-
`Strings` are immutable, meaning their value in memory cannot change.
6+
Strings are immutable, meaning the value of a `str` object in memory cannot change.
77
It means the standard library methods will return a new instance of `str` instead of modifying the existing `str`.

0 commit comments

Comments
 (0)