From 62b3d36d207db60c51e6897d55336eadfb297f99 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Thu, 22 Apr 2021 15:39:37 +0700 Subject: [PATCH] Fix method description in `ConsoleWriter` --- sources/Console/ConsoleWriter.uc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sources/Console/ConsoleWriter.uc b/sources/Console/ConsoleWriter.uc index 4c25b64..44ac50d 100644 --- a/sources/Console/ConsoleWriter.uc +++ b/sources/Console/ConsoleWriter.uc @@ -128,7 +128,7 @@ public final function Color GetColor() * Sets default color for caller 'ConsoleWriter`'s output. * * This only changes default color, i.e. color that will be used if no other is - * specified by `newDefaultColor`. If color is specified, this value will + * specified by "temporary" color. If color is specified, this value will * be ignored. * * If you only want to quickly color certain part of output, it is better to @@ -159,10 +159,6 @@ public final function ConsoleWriter SetColor(Color newDefaultColor) * For quickly coloring certain parts of output: * `console.UseColor(_.color.blue).Write(blueMessage).ResetColor()`. * - * This only changes default text color, i.e. color that will be used if no - * other is specified by `temporaryColor`. If color is specified, this value - * will be ignored. - * * Consecutive calls do not "stack up" colors - only last one is remembered: * `console.UseColor(_.color.blue).UseColor(_.color.green)` is the same as * `console.UseColor(_.color.green)`.