Skip to content

Commit d3cf098

Browse files
committedFeb 8, 2023
Fix typo
1 parent 470ebc4 commit d3cf098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ file or new file ([`VFile`][vfile]).
196196
197197
### `writeSync(description[, options])`
198198
199-
Create a virtual file and write it, async.
199+
Create a virtual file and write it, synchronously.
200200
201201
###### Parameters
202202
@@ -218,7 +218,7 @@ This is a copy of the types from Node and [`VFile`][vfile].
218218
###### Type
219219
220220
```ts
221-
export type BufferEncoding =
221+
type BufferEncoding =
222222
| 'ascii'
223223
| 'utf8'
224224
| 'utf-8'
@@ -254,7 +254,7 @@ URL to file, path to file, options for file, or actual file (TypeScript type).
254254
###### Type
255255
256256
```ts
257-
export type Compatible = Buffer | URL | VFileOptions | VFile | string
257+
type Compatible = Buffer | URL | VFileOptions | VFile | string
258258
```
259259
260260
<!-- To do: fix link to `VFileOptions` when `VFile` is updated -->

0 commit comments

Comments
 (0)
Please sign in to comment.