Skip to content

Commit

Permalink
Rename >>> to >->
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcadman committed Jun 21, 2024
1 parent 7c008fb commit 4fb6c9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Stdlib/Function.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ syntax operator on lapp;
on {A B C} (f : B → B → C) (g : A → B) (a b : A) : C :=
f (g a) (g b);

syntax operator >>> seq;
syntax operator >-> seq;

builtin seq
>>> : {A B : Type} → A → B → B
>-> : {A B : Type} → A → B → B
| x y := y;

0 comments on commit 4fb6c9c

Please sign in to comment.