From 293b32ce20132f410795c10ac35886c2a97c8983 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 20 Oct 2022 10:21:44 +0100 Subject: [PATCH] methods -> method --- docs/source/console.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/console.rst b/docs/source/console.rst index 003e78ac..20c6b7df 100644 --- a/docs/source/console.rst +++ b/docs/source/console.rst @@ -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!")