Merge pull request #3828 from RyanSharafuddin/master

Fix Two Typos
This commit is contained in:
Will McGugan 2026-01-24 12:18:28 +00:00 committed by GitHub
commit 9a99acc97d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -129,7 +129,7 @@ and over time can reduce development overhead quite considerably.
## Creating A Pull Request
Once your happy with your change and have ensured that all steps above have been followed (and checks have passed), you can create a pull request.
Once you're happy with your change and have ensured that all steps above have been followed (and checks have passed), you can create a pull request.
GitHub offers a guide on how to do this [here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork).
Please ensure that you include a good description of what your change does in your pull request, and link it to any relevant issues or discussions.

View File

@ -69,6 +69,7 @@ The following people have contributed to the development of Rich:
- [Paul Sanders](https://github.com/sanders41)
- [Louis Sautier](https://github.com/sbraz)
- [Tim Savage](https://github.com/timsavage)
- [Ryan Sharafuddin](https://github.com/RyanSharafuddin)
- [Anthony Shaw](https://github.com/tonybaloney)
- [Damian Shaw](https://github.com/notatallshaw)
- [Nicolas Simonds](https://github.com/0xDEC0DE)

View File

@ -1006,7 +1006,7 @@ class Text(JupyterMixin):
return self
def append_text(self, text: "Text") -> "Text":
"""Append another Text instance. This method is more performant that Text.append, but
"""Append another Text instance. This method is more performant than Text.append, but
only works for Text.
Args: