clientcredentials: fix comment for Client struct to match godoc style

Godoc comments should start with the name of the thing they are describing.

Change-Id: Ic248aa8f549b22c716bf967c7574452085ea8c48
Reviewed-on: https://go-review.googlesource.com/36945
Reviewed-by: Chris Broadfoot <cbro@golang.org>
This commit is contained in:
Jaana Burcu Dogan 2017-02-14 10:27:37 -08:00
parent de0725b330
commit e1e827deaa
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ import (
"golang.org/x/oauth2/internal" "golang.org/x/oauth2/internal"
) )
// Client Credentials Config describes a 2-legged OAuth2 flow, with both the // Config describes a 2-legged OAuth2 flow, with both the
// client application information and the server's endpoint URLs. // client application information and the server's endpoint URLs.
type Config struct { type Config struct {
// ClientID is the application's ID. // ClientID is the application's ID.