Skip to content

Commit

Permalink
smol fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MiranDaniel committed Oct 15, 2020
1 parent caa9ed5 commit b495b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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) )
```

0 comments on commit b495b76

Please sign in to comment.