Fix doc tipos

This commit is contained in:
LunaAmora 2024-02-27 14:05:53 -03:00
parent d80639dcc9
commit d992c27670

View File

@ -144,7 +144,7 @@ Example:
```rs
λa λb match a { 0: b; +: b }
// Is tranformed to
// Is transformed to
λa λb (match a { 0: λc c; +: λd d } b)
```
@ -154,7 +154,7 @@ example:
```rs
λa λb λc match a { 0: b; +: c }
// Is tranformed to
// Is transformed to
λa λb λc (match a { 0: λd λ* d; +: λ* λe e } b c)
```