Typo fixes

This commit is contained in:
Jun FURUSE 2018-12-01 06:57:40 +00:00
parent efe12e2a62
commit b843dbcb7b
No known key found for this signature in database
GPG Key ID: 3A8838C2DC5507A6
8 changed files with 10 additions and 10 deletions

View File

@ -43,5 +43,5 @@ echo
docker build -t "$image_name:$image_version" "$tmp_dir"
echo
echo "### Succesfully build docker image: $image_name:$image_version"
echo "### Successfully build docker image: $image_name:$image_version"
echo

View File

@ -61,5 +61,5 @@ EOF
docker build -t "$image_name:$image_version" "$tmp_dir"
echo
echo "### Succesfully build docker image: $image_name:$image_version"
echo "### Successfully build docker image: $image_name:$image_version"
echo

View File

@ -98,7 +98,7 @@ module Pool_event : sig
(** The remote peer rejected our connection. *)
| Connection_established of Id.t * P2p_peer_id.t
(** We succesfully established a authentified connection. *)
(** We successfully established a authentified connection. *)
| Swap_request_received of { source : P2p_peer_id.t }
(** A swap request has been received. *)

View File

@ -87,7 +87,7 @@ module Pool_event : sig
| Request_rejected
(** The remote peer rejected our connection. *)
| Connection_established
(** We succesfully established a authentified connection. *)
(** We successfully established a authentified connection. *)
| Disconnection
(** We decided to close the connection. *)
| External_disconnection

View File

@ -106,7 +106,7 @@ module Pool_event : sig
| Request_rejected of P2p_peer_id.t option
(** The remote peer rejected our connection. *)
| Connection_established of P2p_peer_id.t
(** We succesfully established a authentified connection. *)
(** We successfully established a authentified connection. *)
| Disconnection of P2p_peer_id.t
(** We decided to close the connection. *)
| External_disconnection of P2p_peer_id.t

View File

@ -202,7 +202,7 @@ module Pool_event : sig
val wait_new_connection: ('msg, 'peer_meta,'conn_meta) pool -> unit Lwt.t
(** [wait_new_connection pool] is determined when a new connection is
succesfully established in the pool. *)
successfully established in the pool. *)
end

View File

@ -87,7 +87,7 @@ module Event = struct
| Debug msg -> Format.fprintf ppf "%s" msg
| Validation_success (req, { pushed ; treated ; completed }) ->
Format.fprintf ppf
"@[<v 0>Block %a succesfully validated@,\
"@[<v 0>Block %a successfully validated@,\
Pushed: %a, Treated: %a, Completed: %a@]"
Block_hash.pp req.block
Time.pp_hum pushed Time.pp_hum treated Time.pp_hum completed

View File

@ -60,7 +60,7 @@ module S = struct
let valid_blocks =
RPC_service.get_service
~description:"Monitor all blocks that are succesfully validated \
~description:"Monitor all blocks that are successfully validated \
by the node, disregarding whether they were \
selected as the new head or not."
~query: valid_blocks_query
@ -82,7 +82,7 @@ module S = struct
let heads =
RPC_service.get_service
~description:"Monitor all blocks that are succesfully validated \
~description:"Monitor all blocks that are successfully validated \
by the node and selected as the new head of the \
given chain."
~query: heads_query
@ -95,7 +95,7 @@ module S = struct
let protocols =
RPC_service.get_service
~description:"Monitor all economic protocols that are retrieved \
and succesfully loaded and compiled by the node."
and successfully loaded and compiled by the node."
~query: RPC_query.empty
~output: Protocol_hash.encoding
RPC_path.(path / "protocols")