From ef7b14b387c0dcf9c8c50e01e82137d6ba5def6d Mon Sep 17 00:00:00 2001 From: pilcrowOnPaper Date: Sun, 20 Oct 2024 23:23:26 +0900 Subject: [PATCH] fix typo --- docs/pages/reference/crypto/alphabet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/reference/crypto/alphabet.md b/docs/pages/reference/crypto/alphabet.md index 87c059a..a233b69 100644 --- a/docs/pages/reference/crypto/alphabet.md +++ b/docs/pages/reference/crypto/alphabet.md @@ -7,7 +7,7 @@ title: "alphabet()" Generates a string with all the characters defined in the provided pattern: - `a-z`: `abcdefghijklmnopqrstuvwxyz` -- `A-Z`: `ABCDEFGHIJKLMNOPqRSTUVWXYZ` +- `A-Z`: `ABCDEFGHIJKLMNOPQRSTUVWXYZ` - `0-9`: `0123456789` - `-`: Character `-` - `_`: Character `_` @@ -29,7 +29,7 @@ function alphabet(...patterns: "a-z" | "A-Z" | "0-9" | "-" | "_"): string; ```ts import { alphabet } from "oslo/crypto"; -// "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPqRSTUVWXYZ0123456789" +// "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" alphabet("a-z", "A-Z", "0-9"); // "0123456789"