summaryrefslogtreecommitdiff
path: root/colors/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'colors/README.md')
-rw-r--r--colors/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/colors/README.md b/colors/README.md
index f20d1939a..bdaa3d51e 100644
--- a/colors/README.md
+++ b/colors/README.md
@@ -6,8 +6,8 @@ inspired by packages like [chalk](https://www.npmjs.com/package/chalk) and
## Usage
-The main modules exports a single function name `color` which is a function
-that provides chaining to stack colors. Basic usage looks like this:
+The main modules exports a single function name `color` which is a function that
+provides chaining to stack colors. Basic usage looks like this:
```ts
import { color } from "https://deno.land/x/colors/main.ts";
@@ -18,8 +18,8 @@ console.log(color.bgBlue.red.bold("Hello world!"));
## TODO
- Currently, it just assumes it is running in an environment that supports ANSI
- escape code terminal coloring. It should actually detect, specifically
- windows and adjust properly.
+ escape code terminal coloring. It should actually detect, specifically windows
+ and adjust properly.
- Test coverage is very basic at the moment.