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() ```