diff --git a/src/mathed/MathStream.cpp b/src/mathed/MathStream.cpp index 6c0bb31940..085c8310d4 100644 --- a/src/mathed/MathStream.cpp +++ b/src/mathed/MathStream.cpp @@ -371,14 +371,14 @@ MathMLStream & operator<<(MathMLStream & ms, char const * s) MathMLStream & operator<<(MathMLStream & ms, char c) { - ms << docstring(1,c); + ms << docstring(1, c); return ms; } MathMLStream & operator<<(MathMLStream & ms, char_type c) { - ms << docstring(1,c); + ms << docstring(1, c); return ms; }