Skip to content

Commit

Permalink
refactor: rename popularRepos to orgPopularRepos
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbunni committed Jul 12, 2024
1 parent 5e59a53 commit c6ff22b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func main() {
funcMap["recentForks"] = recentForks
funcMap["recentReleases"] = recentReleases
funcMap["recentRepos"] = recentRepos
funcMap["popularRepos"] = popularRepos
funcMap["orgPopularRepos"] = orgPopularRepos
funcMap["followers"] = recentFollowers
funcMap["recentStars"] = recentStars
funcMap["gists"] = gists
Expand Down
2 changes: 1 addition & 1 deletion repos.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Order by stars
}
}
*/
func popularRepos(owner string, count int) []Repo {
func orgPopularRepos(owner string, count int) []Repo {
var query struct {
Organization struct {
Repositories struct {
Expand Down

0 comments on commit c6ff22b

Please sign in to comment.