Skip to content

Commit 56e94d0

Browse files
committed
'-' -> '_'
1 parent 9fc96ac commit 56e94d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deno_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface CrayonColorSupport {
1616

1717
## Usage
1818
```ts
19-
import { getColorSupport, supportedColors, getWindowsVersion } from 'https://deno.land/x/crayon-color-support/mod.ts';
19+
import { getColorSupport, supportedColors, getWindowsVersion } from 'https://deno.land/x/crayon_color_support/mod.ts';
2020

2121
const support = getColorSupport(); // detect terminal color support
2222
const cached = supportedColors(); // cached getColorSupport (it just returns cached object)
@@ -26,7 +26,7 @@ const windowsVersion = getWindowsVersion(); // Reusable function [version (7/8/1
2626
## Usage with crayon.js
2727
```ts
2828
import crayon from 'https://deno.land/x/crayon/mod.ts'; // it'll still work with modules that extend crayon instance as its config is global
29-
import { getColorSupport } from 'https://deno.land/x/crayon-color-support/mod.ts';
29+
import { getColorSupport } from 'https://deno.land/x/crayon_color_support/mod.ts';
3030

3131
crayon.config.colorSupport = getColorSupport();
3232
```

0 commit comments

Comments
 (0)