Correct spelling in Pi error messages, fix mouse icon file type

This commit is contained in:
dceejay 2015-02-04 23:27:38 +00:00
parent b97d251787
commit 3334c795e0
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ module.exports = function(RED) {
});
node.child.on('error', function (err) {
if (err.errno === "ENOENT") { node.error('nrgpio ommand not found'); }
if (err.errno === "ENOENT") { node.error('nrgpio command not found'); }
else if (err.errno === "EACCES") { node.error('nrgpio command not executable'); }
else { node.log('error: ' + err); }
});
@ -257,7 +257,7 @@ module.exports = function(RED) {
});
node.child.on('error', function (err) {
if (err.errno === "ENOENT") { node.error('nrgpio ommand not found'); }
if (err.errno === "ENOENT") { node.error('nrgpio command not found'); }
else if (err.errno === "EACCES") { node.error('nrgpio ommand not executable'); }
else { node.log('error: ' + err); }
});

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 671 B