diff options
| author | Sébastien Dailly <sebastien@dailly.me> | 2022-02-07 16:40:45 +0100 | 
|---|---|---|
| committer | Sébastien Dailly <sebastien@dailly.me> | 2022-02-07 16:43:33 +0100 | 
| commit | 8d23a029c57be92a7aed0f18d9fcf1c931c1038e (patch) | |
| tree | 5bce8907c420b171de9f49679045723aad03e247 /editor/actions/load_page.ml | |
| parent | 6f1b152a6927171b0c0bfed207307ed1bac1900d (diff) | |
Reformat
Diffstat (limited to 'editor/actions/load_page.ml')
| -rwxr-xr-x | editor/actions/load_page.ml | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/editor/actions/load_page.ml b/editor/actions/load_page.ml index e85f8b5..0d02f71 100755 --- a/editor/actions/load_page.ml +++ b/editor/actions/load_page.ml @@ -1,10 +1,7 @@ +(** Load the page with the given ID in the editor *)  module M = struct -    type t = Jstr.t option -  let process -    : t -> State.t -> State.t -    = fun page_id state -> -      State.load_page page_id state - +  let process : t -> State.t -> State.t = +   fun page_id state -> State.load_page page_id state  end | 
