summaryrefslogtreecommitdiff
path: root/std/bytes/README.md
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2020-07-14 15:24:17 -0400
committerGitHub <noreply@github.com>2020-07-14 15:24:17 -0400
commitcde4dbb35132848ffece59ef9cfaccff32347124 (patch)
treecc7830968c6decde704c8cfb83c9185193dc698f /std/bytes/README.md
parent9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff)
Use dprint for internal formatting (#6682)
Diffstat (limited to 'std/bytes/README.md')
-rw-r--r--std/bytes/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/bytes/README.md b/std/bytes/README.md
index 77f3fdfc8..b1edac1e6 100644
--- a/std/bytes/README.md
+++ b/std/bytes/README.md
@@ -15,7 +15,7 @@ import { findIndex } from "https://deno.land/std/bytes/mod.ts";
findIndex(
new Uint8Array([1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 3]),
- new Uint8Array([0, 1, 2])
+ new Uint8Array([0, 1, 2]),
);
// => returns 2
@@ -30,7 +30,7 @@ import { findLastIndex } from "https://deno.land/std/bytes/mod.ts";
findLastIndex(
new Uint8Array([0, 1, 2, 0, 1, 2, 0, 1, 3]),
- new Uint8Array([0, 1, 2])
+ new Uint8Array([0, 1, 2]),
);
// => returns 3