Fix two typos (#530)

This commit is contained in:
John Eismeier 2018-04-06 13:26:31 -04:00 committed by Joel Marcey
parent c437f7be37
commit fc6e3b7311
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ npm run start
### VS Code
Use the following code in VSCode to enable breakpoints. Please ensure you have a later verison of node for non-legacy debugging.
Use the following code in VSCode to enable breakpoints. Please ensure you have a later version of node for non-legacy debugging.
```
{

View file

@ -101,7 +101,7 @@ module.exports = function(callback) {
sm.toXML((err, xml) => {
if (err) {
return 'An error has occured.';
return 'An error has occurred.';
}
callback(xml);
});