Skip to content

Commit

Permalink
Small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
drewolson committed Nov 28, 2023
1 parent 2074c0a commit 34a178a
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 18 deletions.
3 changes: 1 addition & 2 deletions bin/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
core_unix.command_unix
runner)
(preprocess
(pps
ppx_jane))
(pps ppx_jane))
(flags
-open Core))
3 changes: 1 addition & 2 deletions lib/runner/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
year2022
year2023)
(preprocess
(pps
ppx_jane))
(pps ppx_jane))
(flags
-open Core))
3 changes: 1 addition & 2 deletions lib/util/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
core
ppx_jane)
(preprocess
(pps
ppx_jane))
(pps ppx_jane))
(flags
-open Core))
4 changes: 2 additions & 2 deletions lib/util/parser.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ include Angstrom
module Syntax = struct
include Angstrom.Let_syntax

let ( >>= ), ( >>| ), ( *> ), ( <* ), ( <|> ), ( <$> ) =
( >>= ), ( >>| ), ( *> ), ( <* ), ( <|> ), ( <$> )
let ( >>= ), ( >>| ), ( *> ), ( <* ), ( <|> ), ( <?> ), ( <$> ) =
( >>= ), ( >>| ), ( *> ), ( <* ), ( <|> ), ( <?> ), ( <$> )
;;

let ( $> ) p a = p >>| const a
Expand Down
3 changes: 1 addition & 2 deletions lib/year2022/dune
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
util
zarith)
(preprocess
(pps
ppx_jane))
(pps ppx_jane))
(flags
-open Core))
3 changes: 1 addition & 2 deletions lib/year2023/dune
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
util
zarith)
(preprocess
(pps
ppx_jane))
(pps ppx_jane))
(flags
-open Core))
3 changes: 1 addition & 2 deletions test/util/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
year2022)
(inline_tests)
(preprocess
(pps
ppx_jane)))
(pps ppx_jane)))
3 changes: 1 addition & 2 deletions test/year2022/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
year2022)
(inline_tests)
(preprocess
(pps
ppx_jane)))
(pps ppx_jane)))
3 changes: 1 addition & 2 deletions test/year2023/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
year2023)
(inline_tests)
(preprocess
(pps
ppx_jane)))
(pps ppx_jane)))

0 comments on commit 34a178a

Please sign in to comment.