From b495b7659e64f27f83d6cdfc610ff08d098637fd Mon Sep 17 00:00:00 2001 From: MiranDaniel Date: Thu, 15 Oct 2020 20:31:04 +0200 Subject: [PATCH] smol fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f892ac..55519fe 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ Example of code that would trigger this Exception: import ansiColor from ansiColor import colors -print( ansiColor.color("Hello world!", "red") ) +print( ansiColor.color("Hello world!", "red") ) # This is an example of bad code, do not use this, it will not work. ``` correct code: @@ -256,5 +256,5 @@ correct code: import ansiColor from ansiColor import colors -print( ansiColor.color("Hello world!", colors.foreground.red) ) # This is an example of bad code, do not use this, it will not work. +print( ansiColor.color("Hello world!", colors.foreground.red) ) ```