diff --git a/include/grpcpp/grpcpp.h b/include/grpcpp/grpcpp.h index aa8a24203bc..923def19ace 100644 --- a/include/grpcpp/grpcpp.h +++ b/include/grpcpp/grpcpp.h @@ -21,7 +21,7 @@ /// The gRPC C++ API mainly consists of the following classes: ///
/// - grpc::Channel, which represents the connection to an endpoint. See [the -/// gRPC Concepts page](https://grpc.io/docs/guides/concepts.html) for more +/// gRPC Concepts page](https://grpc.io/docs/what-is-grpc/core-concepts) for more /// details. Channels are created by the factory function grpc::CreateChannel. /// /// - grpc::CompletionQueue, the producer-consumer queue used for all diff --git a/include/grpcpp/impl/codegen/client_context_impl.h b/include/grpcpp/impl/codegen/client_context_impl.h index b8e90722b25..f44b1f764bb 100644 --- a/include/grpcpp/impl/codegen/client_context_impl.h +++ b/include/grpcpp/impl/codegen/client_context_impl.h @@ -319,7 +319,7 @@ class ClientContext { /// /// It is legal to call this only before initial metadata is sent. /// - /// \see https://grpc.io/docs/guides/auth.html + /// \see https://grpc.io/docs/guides/auth void set_credentials( const std::shared_ptr& creds); diff --git a/include/grpcpp/security/credentials_impl.h b/include/grpcpp/security/credentials_impl.h index aed58283722..2148cf8d32b 100644 --- a/include/grpcpp/security/credentials_impl.h +++ b/include/grpcpp/security/credentials_impl.h @@ -62,7 +62,7 @@ std::shared_ptr CreateCustomChannelWithInterceptors( /// It can make various assertions, e.g., about the client’s identity, role /// for all the calls on that channel. /// -/// \see https://grpc.io/docs/guides/auth.html +/// \see https://grpc.io/docs/guides/auth class ChannelCredentials : private grpc::GrpcLibraryCodegen { public: ChannelCredentials(); @@ -107,7 +107,7 @@ class ChannelCredentials : private grpc::GrpcLibraryCodegen { /// A call credentials object encapsulates the state needed by a client to /// authenticate with a server for a given call on a channel. /// -/// \see https://grpc.io/docs/guides/auth.html +/// \see https://grpc.io/docs/guides/auth class CallCredentials : private grpc::GrpcLibraryCodegen { public: CallCredentials();