From 8490e01b07946f1c8d6888749606609666d06546 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Sat, 6 Oct 2018 06:15:55 +0000 Subject: [PATCH] Fix typo in compiler.ml --- src/lib_protocol_compiler/compiler.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_protocol_compiler/compiler.ml b/src/lib_protocol_compiler/compiler.ml index 63b2a2b35..8623165fc 100644 --- a/src/lib_protocol_compiler/compiler.ml +++ b/src/lib_protocol_compiler/compiler.ml @@ -159,7 +159,7 @@ let main { compile_ml ; pack_objects ; link_shared } = "-hash-only", Arg.Set hash_only, " Only display the hash of the protocol and don't compile" ; "-no-hash-check", Arg.Clear check_protocol_hash, " Don't check that TEZOS_PROTOCOL declares the expected protocol hash (if existent)" ; "-static", Arg.Set static, " Only build the static library (no .cmxs)" ; - "-register", Arg.Set register, " Generete the `Registerer` module" ; + "-register", Arg.Set register, " Generate the `Registerer` module" ; "-bin-annot", Arg.Set Clflags.binary_annotations, " (see ocamlopt)" ; "-g", Arg.Set Clflags.debug, " (see ocamlopt)" ; "-output-dep", Arg.Set output_dep, " ..." ;