Skip to content

Commit

Permalink
docs: fix quotes (#64)
Browse files Browse the repository at this point in the history
Corrected single quote combination.
  • Loading branch information
azu committed Nov 24, 2023
1 parent b6762bb commit 7782e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```
Expand All @@ -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)
```
Expand Down

0 comments on commit 7782e9a

Please sign in to comment.