diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-09-27 06:22:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:22:32 +0200 |
commit | df02e315075456f8d5f75472abbb1fa81e237827 (patch) | |
tree | d0dc9eb502d17f5bfd463bfd9162f46fead4e307 /std/encoding/README.md | |
parent | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (diff) |
feat(fmt): Sort named import and export specifiers (#7711)
Diffstat (limited to 'std/encoding/README.md')
-rw-r--r-- | std/encoding/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/encoding/README.md b/std/encoding/README.md index fa9753777..21797a451 100644 --- a/std/encoding/README.md +++ b/std/encoding/README.md @@ -308,7 +308,7 @@ for Deno decodes the given RFC4648 base32 representation to a `Uint8Array`. ```ts -import { encode, decode } from "https://deno.land/std/encoding/base32.ts"; +import { decode, encode } from "https://deno.land/std/encoding/base32.ts"; const b32Repr = "RC2E6GA="; @@ -330,7 +330,7 @@ Ascii85/base85 encoder and decoder with support for multiple standards decodes the given ascii85 representation to a `Uint8Array`. ```ts -import { encode, decode } from "https://deno.land/std/encoding/ascii85.ts"; +import { decode, encode } from "https://deno.land/std/encoding/ascii85.ts"; const a85Repr = "LpTqp"; @@ -359,7 +359,7 @@ supported by other encodings.) encoding examples: ```ts -import { encode, decode } from "https://deno.land/std/encoding/ascii85.ts"; +import { decode, encode } from "https://deno.land/std/encoding/ascii85.ts"; const binaryData = new Uint8Array([136, 180, 79, 24]); console.log(encode(binaryData)); // => LpTqp |