From 7b2abfe59159eb404db1f2e34dec38db97076907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Mon, 5 Nov 2018 17:03:26 +0100 Subject: [PATCH] Fix typo --- poincare/src/function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poincare/src/function.cpp b/poincare/src/function.cpp index f538ddb0a..2f61b5496 100644 --- a/poincare/src/function.cpp +++ b/poincare/src/function.cpp @@ -118,7 +118,7 @@ Expression Function::shallowReduce(Context & context, Preferences::AngleUnit ang } const Expression e = context.expressionForSymbol(*this); if (!e.isUninitialized()) { - // We need to replace the unknown witht the child + // We need to replace the unknown with the child Expression result = e.clone(); Symbol x = Symbol(Symbol::SpecialSymbols::UnknownX); result = result.replaceSymbolWithExpression(x, childAtIndex(0));