@@ -87,7 +87,8 @@ func (s *MetaService) Get(ctx context.Context) (*APIMeta, *Response, error) {
8787 return meta , resp , nil
8888}
8989
90- // APIMeta
90+ // APIMeta returns information about GitHub.com.
91+ //
9192// Deprecated: Use MetaService.Get instead.
9293func (c * Client ) APIMeta (ctx context.Context ) (* APIMeta , * Response , error ) {
9394 return c .Meta .Get (ctx )
@@ -117,7 +118,9 @@ func (s *MetaService) Octocat(ctx context.Context, message string) (string, *Res
117118 return buf .String (), resp , nil
118119}
119120
120- // Octocat
121+ // Octocat returns an ASCII art octocat with the specified message in a speech
122+ // bubble. If message is empty, a random zen phrase is used.
123+ //
121124// Deprecated: Use MetaService.Octocat instead.
122125func (c * Client ) Octocat (ctx context.Context , message string ) (string , * Response , error ) {
123126 return c .Meta .Octocat (ctx , message )
@@ -143,7 +146,8 @@ func (s *MetaService) Zen(ctx context.Context) (string, *Response, error) {
143146 return buf .String (), resp , nil
144147}
145148
146- // Zen
149+ // Zen returns a random line from The Zen of GitHub.
150+ //
147151// Deprecated: Use MetaService.Zen instead.
148152func (c * Client ) Zen (ctx context.Context ) (string , * Response , error ) {
149153 return c .Meta .Zen (ctx )
0 commit comments