aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Eric Gribkoff <ericgribkoff@google.com>2017-05-31 16:11:20 -0700
committerGravatar Eric Gribkoff <ericgribkoff@google.com>2017-06-01 08:53:49 -0700
commitdf8b5eacf091e77d6396b6ee93bbbd443db8ea05 (patch)
tree9d51a34132a2714f82ba5b6fb45ab91bf951f5bd /include
parent3c99c150ae336dba3838e49621d5eed4c7862ef2 (diff)
Update comment formatting
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/grpc++.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/grpc++/grpc++.h b/include/grpc++/grpc++.h
index d6c3e2e768..a4f512dbee 100644
--- a/include/grpc++/grpc++.h
+++ b/include/grpc++/grpc++.h
@@ -34,18 +34,18 @@
/// \mainpage gRPC C++ API
///
/// The gRPC C++ API mainly consists of the following classes:
-//
+/// <br>
/// - grpc::Channel, which represents the connection to an endpoint. See [the
/// gRPC Concepts page](http://www.grpc.io/docs/guides/concepts.html) for more
/// details. Channels are created by the factory function grpc::CreateChannel.
-//
+///
/// - grpc::CompletionQueue, the producer-consumer queue used for all
/// asynchronous communication with the gRPC runtime.
-//
+///
/// - grpc::ClientContext and grpc::ServerContext, where optional configuration
/// for an RPC can be set, such as setting custom metadata to be conveyed to the
/// peer, compression settings, authentication, etc.
-//
+///
/// - grpc::Server, representing a gRPC server, created by grpc::ServerBuilder.
///
/// Streaming calls are handled with the streaming classes in