From 930bc42cef37d0904587742101dc2e627cc192aa Mon Sep 17 00:00:00 2001 From: Duraid Abdul Date: Wed, 12 May 2021 11:09:49 -0700 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ba93275..fad5cc6 100644 --- a/README.md +++ b/README.md @@ -21,16 +21,16 @@ let localConsoleManager = LCManager.shared Once prepared, the localConsole can be used throughout your project. ```swift -// Show local console. +// Show the console view. localConsoleManager.isVisible = true -// Hide local console. +// Hide the console view. localConsoleManager.isVisible = false -// Print items to local console. +// Print items to the console view. localConsoleManager.print("Hello, world!") -// Clear local console text. +// Clear text in the console view. localConsoleManager.clear() ```