From 77e91283b6639b608a2681091c7b68a5563c8075 Mon Sep 17 00:00:00 2001 From: Rick van de Loo Date: Sat, 29 Apr 2017 16:15:33 +0200 Subject: [PATCH] fix docs links to api.md points to `master/docs/docs/api.md` currently --- docs/events.md | 4 ++-- docs/filesystem.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/events.md b/docs/events.md index 1864d777..08b93c45 100644 --- a/docs/events.md +++ b/docs/events.md @@ -1,8 +1,8 @@ Here is a list of events that can be listened to using -[`add_listener`](docs/api.md#add_listenerstring-event-function-listener). These +[`add_listener`](api.md#add_listenerstring-event-function-listener). These can be used to programtically control the emulator. Events cannot be sent to the emulator (although it is internally implemented that way), use the -[API](docs/api.md) methods for that. +[API](api.md) methods for that. ### Serial terminal diff --git a/docs/filesystem.md b/docs/filesystem.md index ae947ec7..e43efd85 100644 --- a/docs/filesystem.md +++ b/docs/filesystem.md @@ -1,8 +1,9 @@ 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`](docs/api.md#create_filestring-file-uint8array-data-functionobject-callback) +[`create_file`](api.md#create_filestring-file-uint8array-data-functionobject-callback) +[`create_file`](api.md#create_filestring-file-uint8array-data-functionobject-callback) and -[`read_file`](docs/api.md#read_filestring-file-functionobject-uint8array-callback). It can +[`read_file`](api.md#read_filestring-file-functionobject-uint8array-callback). It can be enabled by passing the following options to `V86Starter`: ```javascript