Remove duplicate link to create_file

This commit is contained in:
Nikhil Reddy Avuthu 2022-02-06 22:17:28 +05:30 committed by GitHub
parent f69706c709
commit c9e274dc6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -439,7 +439,7 @@ Now that the webserver is running, point your browser to `http://localhost:8000/
```sh
initial_state: {
"url": ""http://localhost:8000/images/v86state.bin,
"url": "http://localhost:8000/images/v86state.bin",
},
```

View file

@ -1,9 +1,8 @@
A 9p filesystem is supported by the emulator, using a virtio transport. Using
it, files can be exchanged with the guest OS, see
[`create_file`](api.md#create_filestring-file-uint8array-data-functionobject-callback)
[`create_file`](api.md#create_filestring-file-uint8array-data-functionobject-callback)
[`create_file`](/src/browser/starter.js#L1179-L1199)
and
[`read_file`](api.md#read_filestring-file-functionobject-uint8array-callback). It can
[`read_file`](/src/browser/starter.js#L1209-L1228). It can
be enabled by passing the following options to `V86Starter`:
```javascript