8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd98182 commit 26152e9Copy full SHA for 26152e9
docs/source/reference/text.rst
@@ -2,5 +2,5 @@ rich.text
2
=========
3
4
.. automodule:: rich.text
5
- :members: Text
+ :members: Text, TextType
6
rich/text.py
@@ -38,7 +38,7 @@
38
_re_whitespace = re.compile(r"\s+$")
39
40
TextType = Union[str, "Text"]
41
-"""A plain string or a [Text][rich.text.Text] instance."""
+"""A plain string or a :class:`Text` instance."""
42
43
GetStyleCallable = Callable[[str], Optional[StyleType]]
44
0 commit comments