summaryrefslogtreecommitdiff
path: root/editor/actions/export.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2022-02-07 13:43:47 +0100
committerSébastien Dailly <sebastien@dailly.me>2022-02-07 16:43:33 +0100
commit6639625c1e24e764692ec9d65939ff9ef50d76df (patch)
tree099769a2b400309c3a509df294c3710fe5639536 /editor/actions/export.ml
parent47e4ab0cf1b7d364439a1a47df53f2d58a216239 (diff)
Rename application functions
Diffstat (limited to 'editor/actions/export.ml')
-rwxr-xr-xeditor/actions/export.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/actions/export.ml b/editor/actions/export.ml
index ea4f8ce..27c6a26 100755
--- a/editor/actions/export.ml
+++ b/editor/actions/export.ml
@@ -5,7 +5,7 @@ module M = struct
type t = unit
- let update
+ let process
: t -> State.t -> State.t
= fun _ state ->
@@ -33,4 +33,4 @@ end
(** Create a new element *)
let create
: unit -> App.event
- = fun () -> App.ev (module M) ()
+ = fun () -> App.dispatch (module M) ()