Skip to content

Commit 13bd6b5

Browse files
committed
unicode -> Unicode
1 parent 5cb3f13 commit 13bd6b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,7 @@ How do I modify a string in place?
908908
You can't, because strings are immutable. In most situations, you should
909909
simply construct a new string from the various parts you want to assemble
910910
it from. However, if you need an object with the ability to modify in-place
911-
unicode data, try using an :class:`io.StringIO` object or the :mod:`array`
911+
Unicode data, try using an :class:`io.StringIO` object or the :mod:`array`
912912
module::
913913

914914
>>> import io

0 commit comments

Comments
 (0)