From 91c75448cbc8130fb8d859389cd4a302d7aea4ba Mon Sep 17 00:00:00 2001 From: justbyitself Date: Fri, 15 Aug 2025 10:59:59 +0200 Subject: [PATCH] Fix README.md Missing "word" import. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6956767..f7ef0d2 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ pnpm add ts-regex-builder ## Basic usage ```js -import { buildRegExp, capture, oneOrMore } from 'ts-regex-builder'; +import { buildRegExp, capture, oneOrMore, word } from 'ts-regex-builder'; // /Hello (\w+)/ const regex = buildRegExp(['Hello ', capture(oneOrMore(word))]);