From cf53bfbca7d3042c6769301392bfaca3893836f1 Mon Sep 17 00:00:00 2001 From: Marcel Moura <5615598+marcelstanley@users.noreply.github.com> Date: Mon, 19 Aug 2024 17:30:21 -0300 Subject: [PATCH] chore: fix typos --- offchain/inspect-server/src/inspect.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offchain/inspect-server/src/inspect.rs b/offchain/inspect-server/src/inspect.rs index b2b7bead7..8948d5c0d 100644 --- a/offchain/inspect-server/src/inspect.rs +++ b/offchain/inspect-server/src/inspect.rs @@ -70,7 +70,7 @@ fn respond( } } -/// Loop that answers requests comming from inspect_rx. +/// Loop that answers requests coming from inspect_rx. async fn handle_inspect( address: String, session_id: String, @@ -148,7 +148,7 @@ async fn handle_inspect_error( ) -> String { let mut message = status.message().to_string(); - // If the session was previously tainted, the server-manager replies if with code DataLoss. + // If the session was previously tainted, the server-manager replies it with code DataLoss. // Trying to recover the reason for the session tainted from the session's status. // If not available, we return the original status error message. if status.code() == Code::DataLoss {