diff --git a/M2/Macaulay2/m2/mathml.m2 b/M2/Macaulay2/m2/mathml.m2 index 75c0cf630e..c69be5be09 100644 --- a/M2/Macaulay2/m2/mathml.m2 +++ b/M2/Macaulay2/m2/mathml.m2 @@ -60,7 +60,7 @@ mathML FunctionApplication := m -> ( else concatenate (bigParenthesize mfun, bigParenthesize margs) ) mathML MatrixExpression := x -> concatenate( "(", mtableML x, ")", newline ) -mathML Minus := v -> concatenate( "-", mathML v#0) +mathML Minus := v -> concatenate( "-", mathML v#0, "") mathML Divide := x -> concatenate("", mathML x#0, mathML x#1, "") mathML OneExpression := x -> "1" mathML ZeroExpression := x -> "0"