From edad33f5fbd7a1099f4af20fb9e9363a5f38d5a4 Mon Sep 17 00:00:00 2001 From: "D. H. Lorenz" Date: Sat, 18 May 2024 14:12:32 +0300 Subject: [PATCH] error --- Material/Tutorials/sml/errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Material/Tutorials/sml/errors.md b/Material/Tutorials/sml/errors.md index b7ae8b0..fc78fe6 100644 --- a/Material/Tutorials/sml/errors.md +++ b/Material/Tutorials/sml/errors.md @@ -103,7 +103,7 @@ fun f (a:{s: int, r: int}) = {s: (#s a), r: (#r a)}; ``` -NOTE: `:` denotes type, we need to use `=` in the returned expression to denote a value. another common error: `{{(#s a), (#r a)}` +NOTE: `:` denotes type, we need to use `=` in the returned expression to denote a value. another common error: `{(#s a), (#r a)}`