1
0

スペル修正

This commit is contained in:
otya128
2015-06-07 14:35:03 +09:00
parent d725139dc9
commit 1201467230
2 changed files with 6 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ class PrintCode : Code
write(arg.stringValue);
break;
default:
//type missmatch
//type mismatch
break;
}
}
@@ -184,8 +184,8 @@ class Operate : Code
vm.push(Value(ls >= rs));
return;
default:
//type missmatch
stderr.writeln("Type missmatch");
//type mismatch
stderr.writeln("Type mismatch");
return;
}
}
@@ -213,8 +213,8 @@ class Operate : Code
vm.push(Value(3));
return;
default:
//type missmatch
stderr.writeln("Type missmatch");
//type mismatch
stderr.writeln("Type mismatch");
return;
}
}

View File

@@ -56,7 +56,7 @@ struct Value
case ValueType.String:
return true;//3.1現在では文字列はtrue(ただし!"A"などは動かない)
default:
//配列はtype missmatch
//配列はtype mismatch
return false;
}
}