methods -> method

This commit is contained in:
Dave Pearson 2022-10-20 10:21:44 +01:00
parent 62de8e4caf
commit 293b32ce20
No known key found for this signature in database
GPG Key ID: B413E0EF113D4ABF
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ You can also use :meth:`~rich.console.Console.print` to render objects that supp
Logging
-------
The :meth:`~rich.console.Console.log` methods offers the same capabilities as print, but adds some features useful for debugging a running application. Logging writes the current time in a column to the left, and the file and line where the method was called to a column on the right. Here's an example::
The :meth:`~rich.console.Console.log` method offers the same capabilities as print, but adds some features useful for debugging a running application. Logging writes the current time in a column to the left, and the file and line where the method was called to a column on the right. Here's an example::
>>> console.log("Hello, World!")