Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jun 27, 2021
1 parent 61b9762 commit 4db9d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/CCSexp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ module Make(Sexp : SEXP) = struct
let rec pp_noindent fmt t =
Sexp.match_ t
~atom:(fun s ->
if _must_escape s then Format.fprintf fmt "\"%s\"" (String.escaped s)
else Format.pp_print_string fmt s)
if _must_escape s then Format.fprintf fmt "\"%s\"" (String.escaped s)
else Format.pp_print_string fmt s)
~list:(function
| [] -> Format.pp_print_string fmt "()"
| [x] -> Format.fprintf fmt "(%a)" pp_noindent x
Expand Down

0 comments on commit 4db9d4e

Please sign in to comment.