Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct typo.
  • Loading branch information
peschwa committed Mar 21, 2015
1 parent 6e87561 commit f99b014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/nqp/tools/EvalServer.java
Expand Up @@ -165,7 +165,7 @@ private void service() throws Exception {
String[] cmdStrings = StandardCharsets.UTF_8.decode(command).toString().split("\u0000",-1);

if (cmdStrings.length < 3 || !cmdStrings[cmdStrings.length-1].isEmpty() || !cookie.equals(cmdStrings[0]))
throw new RuntimeException("commnd format error");
throw new RuntimeException("command format error");

if (cmdStrings[1].equals("exit")) {
Files.delete(tokenPath);
Expand Down

0 comments on commit f99b014

Please sign in to comment.