We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b39dff4 commit 56d5d0aCopy full SHA for 56d5d0a
README.md
@@ -62,13 +62,13 @@ _Note that all response objects will supply both the original [obs-websocket][li
62
63
```js
64
// Promise API
65
-obs.send('RequestName', {args}) returns Promise
+obs.send('RequestName', {args}) // returns Promise
66
67
// Callback API
68
-obs.sendCallback('RequestName', {args}, callback(err, data)) no return value
+obs.sendCallback('RequestName', {args}, callback(err, data)) // no return value
69
70
// The following are additional supported requests.
71
-obs.connect({ address: 'address', password: 'password' }) returns Promise
+obs.connect({ address: 'address', password: 'password' }) // returns Promise
72
obs.disconnect();
73
```
74
0 commit comments