Skip to content

Commit

Permalink
Added missing periods.
Browse files Browse the repository at this point in the history
  • Loading branch information
octalmage committed May 27, 2015
1 parent 36c5297 commit 431abe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/robotjs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ NAN_METHOD(keyToggle)
switch(CheckKeyFlags(f, &flags))
{
case -1:
return NanThrowError("Null pointer in key flag");
return NanThrowError("Null pointer in key flag.");
break;
case -2:
return NanThrowError("Invalid key flag specified.");
Expand All @@ -394,7 +394,7 @@ NAN_METHOD(keyToggle)
switch(CheckKeyCodes(k, &key))
{
case -1:
return NanThrowError("Null pointer in key code");
return NanThrowError("Null pointer in key code.");
break;
case -2:
return NanThrowError("Invalid key code specified.");
Expand Down

0 comments on commit 431abe5

Please sign in to comment.