From 7782e9a14a2647e12ecdb55c3a96e7dc37a81f71 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 25 Nov 2023 03:02:46 +0900 Subject: [PATCH] docs: fix quotes (#64) Corrected single quote combination. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 978a9c4..f0fa12c 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Create a new `Uint8Array`. If `globalThis.Buffer` is defined, it will be used in #### Example ```js -import { alloc } from 'uint8arrays/alloc` +import { alloc } from 'uint8arrays/alloc' const buf = alloc(100) ``` @@ -66,7 +66,7 @@ On platforms that support it, memory referenced by the returned `Uint8Array` wil #### Example ```js -import { allocUnsafe } from 'uint8arrays/alloc` +import { allocUnsafe } from 'uint8arrays/alloc' const buf = allocUnsafe(100) ```