Skip to content

Commit 9878340

Browse files
Update config/config.go
1 parent f0537e1 commit 9878340

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/config.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,27 +116,27 @@ func (c *Config) APIToken() string {
116116
return c.apiToken
117117
}
118118

119-
// Returns the GitHub App atuhentication value
119+
// Returns the GitHub App authentication value
120120
func (c *Config) GitHubApp() bool {
121121
return c.gitHubApp
122122
}
123123

124-
// SetGitHubAppKeyPath accepts a string for GitHub app private key path
124+
// Returns the GitHub app private key path
125125
func (c *Config) GitHubAppKeyPath() string {
126126
return c.gitHubAppKeyPath
127127
}
128128

129-
// SetGitHubAppId accepts a string for GitHub app id
129+
// Returns the GitHub app id
130130
func (c *Config) GitHubAppId() int64 {
131131
return c.gitHubAppId
132132
}
133133

134-
// SetGitHubAppInstallationId accepts a string for GitHub app installation id
134+
// Returns the GitHub app installation id
135135
func (c *Config) GitHubAppInstallationId() int64 {
136136
return c.gitHubAppInstallationId
137137
}
138138

139-
// SetGitHubAppRateLimit accepts a string for GitHub RateLimit
139+
// Returns the GitHub RateLimit
140140
func (c *Config) GitHubRateLimit() float64 {
141141
return c.gitHubRateLimit
142142
}

0 commit comments

Comments
 (0)