Skip to content

Commit 7782e9a

Browse files
authored
docs: fix quotes (#64)
Corrected single quote combination.
1 parent b6762bb commit 7782e9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Create a new `Uint8Array`. If `globalThis.Buffer` is defined, it will be used in
5252
#### Example
5353

5454
```js
55-
import { alloc } from 'uint8arrays/alloc`
55+
import { alloc } from 'uint8arrays/alloc'
5656

5757
const buf = alloc(100)
5858
```
@@ -66,7 +66,7 @@ On platforms that support it, memory referenced by the returned `Uint8Array` wil
6666
#### Example
6767

6868
```js
69-
import { allocUnsafe } from 'uint8arrays/alloc`
69+
import { allocUnsafe } from 'uint8arrays/alloc'
7070

7171
const buf = allocUnsafe(100)
7272
```

0 commit comments

Comments
 (0)