Minor rune doc fixes.

This commit is contained in:
Dan Haffey 2015-11-29 19:03:21 -08:00
parent f800913504
commit 39364126f8
2 changed files with 2 additions and 2 deletions

View File

@ -94,6 +94,6 @@ defined type for which all of the cases are covered. We create a core,
Here we can see a common failure case with `?-`. In the first example
all of our possible input cases are not covered when we pass in a `@t`,
so we fail with `mint-vain` a parsing error. When we construct a well
so we fail with `mint-vain` a compilation error. When we construct a well
typed input and select a case from it `?-` in fact has all of the cases
covered and produces correct output.

View File

@ -101,5 +101,5 @@ covered, or the default.
==
0
This example shows how `?-` can fail. Our input icon must match the icon
This example shows how `?+` can fail. Our input icon must match the icon
of our cases.