From a08dc0a6ca1eebda2591d26bb0d3c8ce1db08a82 Mon Sep 17 00:00:00 2001
From: Abhishek Kumar <abhikumar@google.com>
Date: Wed, 25 Feb 2015 12:00:47 -0800
Subject: [PATCH] Update grpc-auth-support.md

Fix the method name, for real this time.
---
 grpc-auth-support.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grpc-auth-support.md b/grpc-auth-support.md
index 59d690d8a5..b1b576e742 100644
--- a/grpc-auth-support.md
+++ b/grpc-auth-support.md
@@ -54,7 +54,7 @@ passed to the factory method.
 gRPC applications can use a simple API to create a credential that works in various deployment scenarios.
 
 ```
-std::unique_ptr<Credentials> creds = GoogleDefaultGoogleDefaultCredentials();
+std::unique_ptr<Credentials> creds = CredentialsFactory::GoogleDefaultCredentials();
 // Create a channel, stub and make RPC calls (same as in the previous example)
 std::shared_ptr<ChannelInterface> channel = CreateChannel(server_name, creds, channel_args);
 std::unique_ptr<Greeter::Stub> stub(Greeter::NewStub(channel));
-- 
GitLab