diff --git a/src/textual/widgets/_text_area.py b/src/textual/widgets/_text_area.py index 7379190c4c..00534e7e45 100644 --- a/src/textual/widgets/_text_area.py +++ b/src/textual/widgets/_text_area.py @@ -931,11 +931,10 @@ def text(self) -> str: @text.setter def text(self, value: str) -> None: - """Load text into the TextArea. - - This will replace the text currently in the TextArea. - - This is an alias of `load_text`. + """Replace the text currently in the TextArea. This is an alias of `load_text`. + + Args: + value: The text to load into the TextArea. """ self.load_text(value)