From bbcab86eab516428a0ab96d2becbe8c0b4aa2470 Mon Sep 17 00:00:00 2001 From: Tao He Date: Mon, 10 Oct 2022 23:30:59 +0800 Subject: [PATCH] Fixes the format of comment lines Signed-off-by: Tao He --- etcd/Client.hpp | 24 ++++++++++++------------ etcd/SyncClient.hpp | 24 ++++++++++++------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/etcd/Client.hpp b/etcd/Client.hpp index 8554ef1..5290725 100644 --- a/etcd/Client.hpp +++ b/etcd/Client.hpp @@ -41,7 +41,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. */ Client(std::string const & etcd_url, @@ -51,7 +51,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param arguments user provided grpc channel arguments. */ Client(std::string const & etcd_url, @@ -66,7 +66,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. */ static Client *WithUrl(std::string const & etcd_url, @@ -76,7 +76,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param arguments user provided grpc channel arguments. */ static Client *WithUrl(std::string const & etcd_url, @@ -91,7 +91,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. @@ -107,7 +107,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param arguments user provided grpc channel arguments. @@ -129,7 +129,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. @@ -145,7 +145,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param arguments user provided grpc channel arguments. @@ -167,7 +167,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. @@ -184,7 +184,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. @@ -206,7 +206,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. @@ -226,7 +226,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. diff --git a/etcd/SyncClient.hpp b/etcd/SyncClient.hpp index 30e6cef..160bc13 100644 --- a/etcd/SyncClient.hpp +++ b/etcd/SyncClient.hpp @@ -94,7 +94,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. */ SyncClient(std::string const & etcd_url, @@ -104,7 +104,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param arguments user provided grpc channel arguments. */ SyncClient(std::string const & etcd_url, @@ -119,7 +119,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. */ static SyncClient *WithUrl(std::string const & etcd_url, @@ -129,7 +129,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param arguments user provided grpc channel arguments. */ static SyncClient *WithUrl(std::string const & etcd_url, @@ -144,7 +144,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. @@ -160,7 +160,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param arguments user provided grpc channel arguments. @@ -183,7 +183,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param load_balancer is the load balance strategy, can be one of round_robin/pick_first/grpclb/xds. @@ -199,7 +199,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param username username of etcd auth * @param password password of etcd auth * @param arguments user provided grpc channel arguments. @@ -222,7 +222,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. @@ -239,7 +239,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. @@ -262,7 +262,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string. @@ -282,7 +282,7 @@ namespace etcd * Constructs an etcd client object. * * @param etcd_url is the url of the etcd server to connect to, like "http://127.0.0.1:2379", - * or multiple url, seperated by ',' or ';'. + * or multiple url, separated by ',' or ';'. * @param ca root CA file for SSL/TLS connection. * @param cert cert chain file for SSL/TLS authentication, could be empty string. * @param privkey private key file for SSL/TLS authentication, could be empty string.