We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2f5a9 commit 70e14a9Copy full SHA for 70e14a9
README.md
@@ -578,7 +578,7 @@ import {
578
} from "https://deno.land/std@$VERSION/testing/asserts.ts";
579
580
assert(isToken("token"));
581
-assert(isTchar("*!~"));
+assert(isToken("*!~"));
582
assertFalse(isToken(""));
583
```
584
token.ts
@@ -75,7 +75,7 @@ const reToken = /^[\w!#$%&'*+.^`|~-]+$/;
75
* } from "https://deno.land/std@$VERSION/testing/asserts.ts";
76
*
77
* assert(isToken("token"));
78
- * assert(isTchar("*!~"));
+ * assert(isToken("*!~"));
79
* assertFalse(isToken(""));
80
* ```
81
*/
0 commit comments