Skip to content

Commit ab444bb

Browse files
committed
Fix tinyexec link
1 parent 4c0f47c commit ab444bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# args-tokenizer
22

3-
`args-tokenizer` is a lightweight JavaScript library for parsing shell commands with arguments into an `argv` array. This makes it easy to work with command-line tools and libraries that expect an array format for arguments, such as [`tinyexec`](https://github.com/tinyexec).
3+
`args-tokenizer` is a lightweight JavaScript library for parsing shell commands with arguments into an `argv` array. This makes it easy to work with command-line tools and libraries that expect an array format for arguments, such as [`tinyexec`](https://github.com/tinylibs/tinyexec).
44

55
## Features
66

@@ -43,7 +43,7 @@ console.log(args); // ["curl", "-X", "POST", "https://my-url.com"]
4343

4444
### Example with `tinyexec`
4545

46-
One common use case is passing more human-readable commands into the [`tinyexec`](https://github.com/tinyexec) library:
46+
One common use case is passing more human-readable commands into the [`tinyexec`](https://github.com/tinylibs/tinyexec) library:
4747

4848
```js
4949
import { tokenizeArgs } from "args-tokenizer";

0 commit comments

Comments
 (0)