Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit ef7b14b

Browse files
fix typo
1 parent 320560e commit ef7b14b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/pages/reference/crypto/alphabet.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: "alphabet()"
77
Generates a string with all the characters defined in the provided pattern:
88

99
- `a-z`: `abcdefghijklmnopqrstuvwxyz`
10-
- `A-Z`: `ABCDEFGHIJKLMNOPqRSTUVWXYZ`
10+
- `A-Z`: `ABCDEFGHIJKLMNOPQRSTUVWXYZ`
1111
- `0-9`: `0123456789`
1212
- `-`: Character `-`
1313
- `_`: Character `_`
@@ -29,7 +29,7 @@ function alphabet(...patterns: "a-z" | "A-Z" | "0-9" | "-" | "_"): string;
2929
```ts
3030
import { alphabet } from "oslo/crypto";
3131

32-
// "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPqRSTUVWXYZ0123456789"
32+
// "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
3333
alphabet("a-z", "A-Z", "0-9");
3434

3535
// "0123456789"

0 commit comments

Comments
 (0)