From a09f6cc897946f0d1d71de920d9c7e00a7801a93 Mon Sep 17 00:00:00 2001 From: hugo-syn <61210734+hugo-syn@users.noreply.github.com> Date: Fri, 12 Jan 2024 18:56:43 +0100 Subject: [PATCH] chore: Fix typo s/seperate/separate/ (#2605) --- proto/pb/vm/vm_grpc.pb.go | 4 ++-- proto/vm/vm.proto | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/pb/vm/vm_grpc.pb.go b/proto/pb/vm/vm_grpc.pb.go index 5250af11f86f..917e04d25e96 100644 --- a/proto/pb/vm/vm_grpc.pb.go +++ b/proto/pb/vm/vm_grpc.pb.go @@ -73,7 +73,7 @@ type VMClient interface { // Creates the HTTP handlers for custom VM network calls. // // Note: RPC Chain VM Factory will start a new instance of the VM in a - // seperate process which will populate the static handlers. After this + // separate process which will populate the static handlers. After this // process is created other processes will be created to populate blockchains, // but they will not have the static handlers be called again. CreateStaticHandlers(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*CreateStaticHandlersResponse, error) @@ -464,7 +464,7 @@ type VMServer interface { // Creates the HTTP handlers for custom VM network calls. // // Note: RPC Chain VM Factory will start a new instance of the VM in a - // seperate process which will populate the static handlers. After this + // separate process which will populate the static handlers. After this // process is created other processes will be created to populate blockchains, // but they will not have the static handlers be called again. CreateStaticHandlers(context.Context, *emptypb.Empty) (*CreateStaticHandlersResponse, error) diff --git a/proto/vm/vm.proto b/proto/vm/vm.proto index fb93455105df..ff50de1eb6cb 100644 --- a/proto/vm/vm.proto +++ b/proto/vm/vm.proto @@ -24,7 +24,7 @@ service VM { // Creates the HTTP handlers for custom VM network calls. // // Note: RPC Chain VM Factory will start a new instance of the VM in a - // seperate process which will populate the static handlers. After this + // separate process which will populate the static handlers. After this // process is created other processes will be created to populate blockchains, // but they will not have the static handlers be called again. rpc CreateStaticHandlers(google.protobuf.Empty) returns (CreateStaticHandlersResponse);