diff options
author | Anh Hong <hong4rc@gmail.com> | 2020-12-11 02:45:45 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 06:45:45 +1100 |
commit | b8bc24d167f2e19482d9dc6d367876c361abf4ea (patch) | |
tree | 5e46858514914eed698d1c941fe8593547e93ed4 /std/encoding/ascii85.ts | |
parent | fd9b0202c1bb0e83183fd0a53d8b1303612a5e31 (diff) |
chore: fixed various misspellings and other typos (#8691)
Diffstat (limited to 'std/encoding/ascii85.ts')
-rw-r--r-- | std/encoding/ascii85.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/encoding/ascii85.ts b/std/encoding/ascii85.ts index 6a303ebda..cb2a3ec76 100644 --- a/std/encoding/ascii85.ts +++ b/std/encoding/ascii85.ts @@ -4,8 +4,8 @@ export type Ascii85Standard = "Adobe" | "btoa" | "RFC 1924" | "Z85"; /** * encoding/decoding options - * @property standard - characterset and delimeter (if supported and used). Defaults to Adobe - * @property delimeter - whether to use a delimeter (if supported) - "<~" and "~>" by default + * @property standard - characterset and delimiter (if supported and used). Defaults to Adobe + * @property delimiter - whether to use a delimiter (if supported) - "<~" and "~>" by default */ export interface Ascii85Options { standard?: Ascii85Standard; @@ -20,7 +20,7 @@ const Z85 = * @param uint8 input to encode * @param [options] encoding options * @param [options.standard=Adobe] encoding standard (Adobe, btoa, RFC 1924 or Z85) - * @param [options.delimeter] whether to use a delimeter, if supported by encoding standard + * @param [options.delimiter] whether to use a delimiter, if supported by encoding standard */ export function encode(uint8: Uint8Array, options?: Ascii85Options): string { const standard = options?.standard ?? "Adobe"; |