Skip to content

Commit

Permalink
缺个分号
Browse files Browse the repository at this point in the history
XD
  • Loading branch information
Hexhu authored Apr 6, 2017
1 parent 0e9ecd3 commit 3e378f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lesson6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ var fibonacci = function (n) {
throw new Error('n should be a Number');
}
if (n < 0) {
throw new Error('n should >= 0')
throw new Error('n should >= 0');
}
if (n > 10) {
throw new Error('n should <= 10');
Expand Down

0 comments on commit 3e378f9

Please sign in to comment.