From b843dbcb7b5c3d9c84bcb20c3243ae7812b6e5e9 Mon Sep 17 00:00:00 2001 From: Jun FURUSE Date: Sat, 1 Dec 2018 06:57:40 +0000 Subject: [PATCH] Typo fixes --- scripts/ci/create_docker_image.build.sh | 2 +- scripts/ci/create_docker_image.minimal.sh | 2 +- src/lib_base/p2p_connection.mli | 2 +- src/lib_base/p2p_peer.mli | 2 +- src/lib_base/p2p_point.mli | 2 +- src/lib_p2p/p2p_pool.mli | 2 +- src/lib_shell_services/block_validator_worker_state.ml | 2 +- src/lib_shell_services/monitor_services.ml | 6 +++--- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/ci/create_docker_image.build.sh b/scripts/ci/create_docker_image.build.sh index 1949cc8ba..075052d5f 100755 --- a/scripts/ci/create_docker_image.build.sh +++ b/scripts/ci/create_docker_image.build.sh @@ -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 diff --git a/scripts/ci/create_docker_image.minimal.sh b/scripts/ci/create_docker_image.minimal.sh index a64894f57..652a782da 100755 --- a/scripts/ci/create_docker_image.minimal.sh +++ b/scripts/ci/create_docker_image.minimal.sh @@ -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 diff --git a/src/lib_base/p2p_connection.mli b/src/lib_base/p2p_connection.mli index fc435778c..9b95130b6 100644 --- a/src/lib_base/p2p_connection.mli +++ b/src/lib_base/p2p_connection.mli @@ -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. *) diff --git a/src/lib_base/p2p_peer.mli b/src/lib_base/p2p_peer.mli index 57d020051..8cdc0a304 100644 --- a/src/lib_base/p2p_peer.mli +++ b/src/lib_base/p2p_peer.mli @@ -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 diff --git a/src/lib_base/p2p_point.mli b/src/lib_base/p2p_point.mli index cab095797..01976f98b 100644 --- a/src/lib_base/p2p_point.mli +++ b/src/lib_base/p2p_point.mli @@ -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 diff --git a/src/lib_p2p/p2p_pool.mli b/src/lib_p2p/p2p_pool.mli index 1a0a6edc8..bf6b9cad8 100644 --- a/src/lib_p2p/p2p_pool.mli +++ b/src/lib_p2p/p2p_pool.mli @@ -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 diff --git a/src/lib_shell_services/block_validator_worker_state.ml b/src/lib_shell_services/block_validator_worker_state.ml index 8c0ad2482..4c93d26cd 100644 --- a/src/lib_shell_services/block_validator_worker_state.ml +++ b/src/lib_shell_services/block_validator_worker_state.ml @@ -87,7 +87,7 @@ module Event = struct | Debug msg -> Format.fprintf ppf "%s" msg | Validation_success (req, { pushed ; treated ; completed }) -> Format.fprintf ppf - "@[Block %a succesfully validated@,\ + "@[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 diff --git a/src/lib_shell_services/monitor_services.ml b/src/lib_shell_services/monitor_services.ml index 2e3ed8532..f6821432e 100644 --- a/src/lib_shell_services/monitor_services.ml +++ b/src/lib_shell_services/monitor_services.ml @@ -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")