From 7b244ff7ec350910295eee85633e02d92a6f6b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E5=8B=87=E5=8D=87=20pengys?= Date: Mon, 15 Jul 2019 22:20:21 +0800 Subject: [PATCH] Correct spelling errors in the network protocol. (#8) --- register/Register.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/register/Register.proto b/register/Register.proto index aff9ea5..6e8000b 100644 --- a/register/Register.proto +++ b/register/Register.proto @@ -32,7 +32,7 @@ service Register { rpc doServiceInstanceRegister (ServiceInstances) returns (ServiceInstanceRegisterMapping) { } - rpc doEndpointRegister (Enpoints) returns (EndpointMapping) { + rpc doEndpointRegister (Endpoints) returns (EndpointMapping) { } rpc doNetworkAddressRegister (NetAddresses) returns (NetAddressMapping) { @@ -86,8 +86,8 @@ message NetAddressMapping { repeated KeyIntValuePair addressIds = 1; } -// Endpint register -message Enpoints { +// Endpoints register +message Endpoints { repeated Endpoint endpoints = 1; } -- GitLab