From e028073d45d52995a9ced61a87a8c7ee4bbbb7cc Mon Sep 17 00:00:00 2001 From: Hari haran Date: Thu, 3 Apr 2014 14:56:37 +0530 Subject: [PATCH] Correct type name in the doc example --- github/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/doc.go b/github/doc.go index 9b324c4..89c6db3 100644 --- a/github/doc.go +++ b/github/doc.go @@ -75,7 +75,7 @@ Helper functions have been provided to easily create these pointers for string, bool, and int values. For example: // create a new private repository named "foo" - repo := &github.Repo{ + repo := &github.Repository{ Name: github.String("foo"), Private: github.Bool(true), }