From 226a9a1778f031329d6e6fde0f92aa426f90d9ef Mon Sep 17 00:00:00 2001 From: bruno Date: Wed, 14 Mar 2018 11:11:55 +0100 Subject: [PATCH] Proto_alpha: fix typo "unpexpected" --- src/proto_alpha/lib_protocol/src/apply.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/proto_alpha/lib_protocol/src/apply.ml b/src/proto_alpha/lib_protocol/src/apply.ml index 4f4968a76..19cfc8877 100644 --- a/src/proto_alpha/lib_protocol/src/apply.ml +++ b/src/proto_alpha/lib_protocol/src/apply.ml @@ -87,11 +87,11 @@ let () = register_error_kind `Temporary ~id:"operation.invalid_endorsement_level" - ~title:"Unpexpected level in endorsement" + ~title:"Unexpected level in endorsement" ~description:"The level of an endorsement is inconsistent with the \ \ provided block hash." ~pp:(fun ppf () -> - Format.fprintf ppf "Unpexpected level in endorsement.") + Format.fprintf ppf "Unexpected level in endorsement.") Data_encoding.unit (function Invalid_endorsement_level -> Some () | _ -> None) (fun () -> Invalid_endorsement_level) ;