Skip to content

Commit 14c9536

Browse files
Split sentance in docs
1 parent 33fe65f commit 14c9536

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Doc/library/unicodedata.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ following functions:
148148

149149
Return ``True`` if *chr* is a valid identifier start per the
150150
`Unicode Standard Annex #31 <https://www.unicode.org/reports/tr31/>`_,
151-
that is, it has the ``XID_Start`` property, ``False`` otherwise. For example::
151+
that is, it has the ``XID_Start`` property. Return ``False`` otherwise.
152+
For example::
152153

153154
>>> unicodedata.isidstart('S')
154155
True
@@ -162,7 +163,8 @@ following functions:
162163

163164
Return ``True`` if *chr* is a valid identifier charcter per the
164165
`Unicode Standard Annex #31 <https://www.unicode.org/reports/tr31/>`_,
165-
that is, it has the ``XID_Continue`` property, ``False`` otherwise. For example::
166+
that is, it has the ``XID_Continue`` property. Return ``False`` otherwise.
167+
For example::
166168

167169
>>> unicodedata.isidcontinue('S')
168170
True

0 commit comments

Comments
 (0)