aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mmx@google.com>2017-05-07 22:24:40 -0700
committerGravatar Mehrdad Afshari <mehrdad@afshari.me>2017-05-17 23:30:09 -0700
commitb97bd4a8e72c4a1b06ba58ab26a729097d9cec8b (patch)
treef901026019d2dfeb9c2b80ff937d33d81cb0dc09 /include
parentab1277c43389c20d0ed51d18c71f683cd060c7ed (diff)
minor: add trailing period
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/create_channel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc++/create_channel.h b/include/grpc++/create_channel.h
index 0537695ed2..669711531f 100644
--- a/include/grpc++/create_channel.h
+++ b/include/grpc++/create_channel.h
@@ -43,7 +43,7 @@
namespace grpc {
-/// Create a new \a Channel pointing to \a target
+/// Create a new \a Channel pointing to \a target.
///
/// \param target The URI of the endpoint to connect to.
/// \param creds Credentials to use for the created channel. If it does not hold
@@ -52,7 +52,7 @@ std::shared_ptr<Channel> CreateChannel(
const grpc::string& target,
const std::shared_ptr<ChannelCredentials>& creds);
-/// Create a new \em custom \a Channel pointing to \a target
+/// Create a new \em custom \a Channel pointing to \a target.
///
/// \warning For advanced use and testing ONLY. Override default channel
/// arguments only if necessary.