@@ -87,7 +87,8 @@ func (s *MetaService) Get(ctx context.Context) (*APIMeta, *Response, error) {
87
87
return meta , resp , nil
88
88
}
89
89
90
- // APIMeta
90
+ // APIMeta returns information about GitHub.com.
91
+ //
91
92
// Deprecated: Use MetaService.Get instead.
92
93
func (c * Client ) APIMeta (ctx context.Context ) (* APIMeta , * Response , error ) {
93
94
return c .Meta .Get (ctx )
@@ -117,7 +118,9 @@ func (s *MetaService) Octocat(ctx context.Context, message string) (string, *Res
117
118
return buf .String (), resp , nil
118
119
}
119
120
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
+ //
121
124
// Deprecated: Use MetaService.Octocat instead.
122
125
func (c * Client ) Octocat (ctx context.Context , message string ) (string , * Response , error ) {
123
126
return c .Meta .Octocat (ctx , message )
@@ -143,7 +146,8 @@ func (s *MetaService) Zen(ctx context.Context) (string, *Response, error) {
143
146
return buf .String (), resp , nil
144
147
}
145
148
146
- // Zen
149
+ // Zen returns a random line from The Zen of GitHub.
150
+ //
147
151
// Deprecated: Use MetaService.Zen instead.
148
152
func (c * Client ) Zen (ctx context.Context ) (string , * Response , error ) {
149
153
return c .Meta .Zen (ctx )
0 commit comments