Skip to content

Commit

Permalink
fix typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonTian committed Sep 20, 2015
1 parent 69efd9e commit d9631e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ ep.once('check', function (permission) {

ep.once('get', function (err, data) {
if (err) {
retern ep.emit('error', err);
return ep.emit('error', err);
}
render(data);
});
Expand All @@ -446,7 +446,7 @@ ep.once('check', function (permission) {

ep.once('get', function (err, data) {
if (err) {
retern ep.emit('error', err);
return ep.emit('error', err);
}
render(data);
});
Expand Down Expand Up @@ -485,7 +485,7 @@ ep.once('check', function (permission) {

ep.once('get', function (err, data) {
if (err) {
retern ep.emit('error', err);
return ep.emit('error', err);
}
render(data);
});
Expand Down

0 comments on commit d9631e0

Please sign in to comment.