summaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-24 10:28:01 -0500
committerGitHub <noreply@github.com>2018-12-24 10:28:01 -0500
commitb5f6f972342dbc5e1a4a3116743d812ec6baddea (patch)
treebe227d05145ed3cfede8d5400bfdc79ce2d3a67c /colors
parenta5ad3868870f54c32b95c3e473cb86973ec53493 (diff)
Format (denoland/deno_std#42)
Original: https://github.com/denoland/deno_std/commit/9b8923844f643fa5e04ea85ce1df835c10e09b7d
Diffstat (limited to 'colors')
-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.