ソースを参照

:pencil2: Correction typo

Arthur Brandao 6 年 前
コミット
c8671baa04
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/migl/lisp/operator/MathOperator.java

+ 1 - 1
src/migl/lisp/operator/MathOperator.java

@@ -26,7 +26,7 @@ public class MathOperator implements LispOperator {
 				return LispElement.generate(Math.cos(elt.toNumber()));
 			case "rint":
 				return LispElement.generate(Math.rint(elt.toNumber()));
-			case "rouund":
+			case "round":
 				return LispElement.generate(Math.round(elt.toNumber()));
 			default:
 				throw new LispError(operator + LispError.ERR_UNKNOW);