diff options
author | Federico Igne <undyamon@disroot.org> | 2024-01-11 19:38:04 +0100 |
---|---|---|
committer | Federico Igne <undyamon@disroot.org> | 2024-01-11 19:38:04 +0100 |
commit | b177712c7ac2563cbfad48927452d9544cbafd22 (patch) | |
tree | 77f11233eb096a25940904a289bd05b245878cec /bin/main.ml | |
parent | 055c743c55bde27f4475d3434c26d8383c0c3ea1 (diff) | |
download | sandy-b177712c7ac2563cbfad48927452d9544cbafd22.tar.gz sandy-b177712c7ac2563cbfad48927452d9544cbafd22.zip |
refactor: revert temporary naming
Diffstat (limited to 'bin/main.ml')
-rw-r--r-- | bin/main.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/main.ml b/bin/main.ml index 75328c9..932c452 100644 --- a/bin/main.ml +++ b/bin/main.ml | |||
@@ -4,5 +4,5 @@ let () = | |||
4 | let open Editor in | 4 | let open Editor in |
5 | let cli = Config.parse Sys.argv in | 5 | let cli = Config.parse Sys.argv in |
6 | let editor = Editor.init cli in | 6 | let editor = Editor.init cli in |
7 | let rec loop () = Action.(render *> handle_next_command2 >>= loop) in | 7 | let rec loop () = Action.(render *> handle_next_command >>= loop) in |
8 | Action.eval ~editor loop | 8 | Action.eval ~editor loop |