Skip to content

Commit

Permalink
re-run rewrites.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellwrosen committed Dec 9, 2024
1 parent 995e8e4 commit a1b49ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unison-src/transcripts-manual/rewrites.output.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ rule1 f x =
term x + 1 ==> Nat.increment x
term a -> f a ==> f
type Optional2 a = Some2 a | None2
type Optional2 a = None2 | Some2 a
rule2 x = @rewrite signature Optional ==> Optional2
```
Expand Down Expand Up @@ -111,7 +111,7 @@ rule1 f x =
term x + 1 ==> Nat.increment x
term a -> f a ==> f
type Optional2 a = Some2 a | None2
type Optional2 a = None2 | Some2 a
rule2 x = @rewrite signature Optional ==> Optional2
```
Expand Down

0 comments on commit a1b49ed

Please sign in to comment.