diff options
-rw-r--r-- | Doc/library/unicodedata.rst | 2 | ||||
-rw-r--r-- | Modules/unicodedata.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index 3787c36..ad70dd9 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -69,7 +69,7 @@ following functions: .. function:: bidirectional(chr) - Returns the bidirectional category assigned to the character *chr* as + Returns the bidirectional class assigned to the character *chr* as string. If no such value is defined, an empty string is returned. diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index d339f58..27fadb7 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -273,7 +273,7 @@ unicodedata_category(PyObject *self, PyObject *args) PyDoc_STRVAR(unicodedata_bidirectional__doc__, "bidirectional(unichr)\n\ \n\ -Returns the bidirectional category assigned to the Unicode character\n\ +Returns the bidirectional class assigned to the Unicode character\n\ unichr as string. If no such value is defined, an empty string is\n\ returned."); |