update transcripts

This commit is contained in:
Chris Penner 2024-06-27 11:37:22 -07:00
parent c3fe983bef
commit 5dcc096160
3 changed files with 20 additions and 2 deletions

View File

@ -50,7 +50,7 @@ test2 = do
Failure
(typeLink IOFailure)
"Cannot decode byte '\\xee': Data.Text.Internal.Encoding.decodeUtf8: Invalid UTF-8 stream"
"Cannot decode byte '\\xee': Data.Text.Encoding: Invalid UTF-8 stream"
(Any ())
Stack trace:

View File

@ -138,6 +138,6 @@ greek_bytes = Bytes.fromList [206, 145, 206, 146, 206, 147, 206, 148, 206]
5 | > match fromUtf8.impl (drop 1 greek_bytes) with
"Cannot decode byte '\\x91': Data.Text.Internal.Encoding.decodeUtf8: Invalid UTF-8 stream"
"Cannot decode byte '\\x91': Data.Text.Encoding: Invalid UTF-8 stream"
```

View File

@ -66,6 +66,24 @@ x = a.#abc
I was surprised to find a '.' here.
I was expecting one of these instead:
* and
* bang
* do
* false
* force
* handle
* if
* infixApp
* let
* newline or semicolon
* or
* quote
* termLink
* true
* tuple
* typeLink
```
```unison