Skip to content

Commit

Permalink
Merge pull request #15 from drvink/ppx-js-style-fix
Browse files Browse the repository at this point in the history
Use let () instead of let _ for ignored value
  • Loading branch information
alavrik authored Jun 10, 2020
2 parents e89c637 + 81dff79 commit 50b73dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piqic-ocaml/piqic_ocaml_ext.ml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let gen_init_piqi modname =
iol [
ios "let piqi = "; ios modname; ios ".piqi"; eol;
eol; eol;
ios "let _ = Piqirun_ext.init_piqi piqi"; eol;
ios "let () = Piqirun_ext.init_piqi piqi"; eol;
]


Expand Down

0 comments on commit 50b73dd

Please sign in to comment.