summaryrefslogtreecommitdiff
path: root/std/encoding/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/encoding/README.md')
-rw-r--r--std/encoding/README.md6
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