From c672bf94c176bba97a46ad64e269cd19b6bdddb2 Mon Sep 17 00:00:00 2001 From: Alexander Gutkin <35786058+agutkin@users.noreply.github.com> Date: Fri, 21 May 2021 17:34:20 +0100 Subject: [PATCH] Updated documentation for `addr_uri` argument in `AddListeningPort`: Removed extraneous bracket and random (?) slash. (#26263) --- include/grpcpp/server_builder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/grpcpp/server_builder.h b/include/grpcpp/server_builder.h index 00e82a10f8719..1a3b722c564a3 100644 --- a/include/grpcpp/server_builder.h +++ b/include/grpcpp/server_builder.h @@ -121,8 +121,8 @@ class ServerBuilder { /// \param addr_uri The address to try to bind to the server in URI form. If /// the scheme name is omitted, "dns:///" is assumed. To bind to any address, /// please use IPv6 any, i.e., [::]:, which also accepts IPv4 - /// connections. Valid values include dns:///localhost:1234, / - /// 192.168.1.1:31416, dns:///[::1]:27182, etc.). + /// connections. Valid values include dns:///localhost:1234, + /// 192.168.1.1:31416, dns:///[::1]:27182, etc. /// \param creds The credentials associated with the server. /// \param[out] selected_port If not `nullptr`, gets populated with the port /// number bound to the \a grpc::Server for the corresponding endpoint after