fix spelling - PR#366

This commit is contained in:
Umur Ozkul 2022-04-25 17:39:38 +02:00
parent f97751b989
commit d00834bbe0
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ module MyOnly = {
} }
describe("MathJs parse", () => { describe("MathJs parse", () => {
describe("literals operators paranthesis", () => { describe("literals operators parenthesis", () => {
testParse("1", "1") testParse("1", "1")
testParse("'hello'", "'hello'") testParse("'hello'", "'hello'")
testParse("true", "true") testParse("true", "true")

View File

@ -7,7 +7,7 @@ open Reducer_TestHelpers
There is a second version of inspect that takes a label, which will print out the label and the value. There is a second version of inspect that takes a label, which will print out the label and the value.
inpsectPerformace(expr, label) will print out the value of expr, the label, and the time it took to evaluate expr. inspectPerformace(expr, label) will print out the value of expr, the label, and the time it took to evaluate expr.
*/ */
describe("Debugging", () => { describe("Debugging", () => {
testEvalToBe("inspect(1)", "Ok(1)") testEvalToBe("inspect(1)", "Ok(1)")