Skip to content

Commit

Permalink
Minor documentation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Nilsson authored and Robert Nilsson committed Dec 22, 2020
1 parent 34bc2a1 commit 1f5d04d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ The number after `DEVICE` is the ID of the Pico remote you just pressed.
"type": "simple"
},
{
"name": "Home Theater Pico",
"pico": [11,31],
"type": "scene"
"name": "Home Theater Pico",
"pico": [11,31],
"type": "scene"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Pico {
this.api = api;
this.clickTime = config.clicktime || 500;
if (config.quiet) {
this.log('"quiet" config setting is depricated, switch to "buslog"');
this.log('"quiet" config setting is deprecated, switch to "buslog"');
}
this.buslog = config.buslog || ((config.quiet || false) ? "full" : "off");
if (['off', 'monitor', 'full'].indexOf(this.buslog) < 0) {
Expand Down

0 comments on commit 1f5d04d

Please sign in to comment.