Skip to content

Commit

Permalink
Fix doc tipos
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaAmora committed Feb 27, 2024
1 parent d80639d commit d992c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/compiler-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand All @@ -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)
```

Expand Down

0 comments on commit d992c27

Please sign in to comment.