docs: fix typos

This commit is contained in:
Kia Rahimian
2018-07-17 16:55:07 -04:00
parent ab568e383e
commit 6be510decd
2 changed files with 2 additions and 2 deletions

2
API.md
View File

@@ -458,7 +458,7 @@ db.events.on(name, callback)
db.events.on('replicated', (address) => ... )
```
Emitted when a the database was synced with another peer. This is usually a good place to re-query the database for updated results, eg. if a value of a key was changed or if there are new events in an event log.
Emitted when the database has synced with another peer. This is usually a good place to re-query the database for updated results, eg. if a value of a key was changed or if there are new events in an event log.
#### `replicate`
```javascript

View File

@@ -1,6 +1,6 @@
# Getting Started with OrbitDB
This guide will get you familiar with using OrbitDB in your JavaScript application. OrbitDB and IPFS both work in Node.js applications as well as in browser applications. (Windows is not supported yet though)
This guide will get you familiar with using OrbitDB in your JavaScript application. OrbitDB and IPFS both work in Node.js applications as well as in browser applications. (Windows is not supported yet though).
This guide is still being worked on and we would love to get [feedback and suggestions](https://github.com/orbitdb/orbit-db/issues) on how to improve it!