From 271e22628bd6b3591502cb17e61d84c7731916db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Thu, 3 Jan 2019 16:19:48 +0100 Subject: [PATCH] Typo in comment --- apps/calculation/calculation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/calculation/calculation.cpp b/apps/calculation/calculation.cpp index c98c20c34..97bdfff95 100644 --- a/apps/calculation/calculation.cpp +++ b/apps/calculation/calculation.cpp @@ -166,7 +166,7 @@ bool Calculation::shouldOnlyDisplayExactOutput() { /* If the approximateOutput is undef, we not not want to display it. * This prevents: * x->f(x) from displaying x = undef - * x+x form displaying 2x = undef */ + * x+x from displaying 2x = undef */ return strcmp(m_approximateOutputText, Undefined::Name()) == 0; }