@@ -22,22 +22,22 @@ import Github.Private
2222--
2323-- > comment "thoughtbot" "paperclip" 1468184
2424comment :: String -> String -> Int -> IO (Either Error IssueComment )
25- comment user repoName commentId =
26- githubGet [" repos" , user, repoName , " issues" , " comments" , show commentId ]
25+ comment user reqRepoName reqCommentId =
26+ githubGet [" repos" , user, reqRepoName , " issues" , " comments" , show reqCommentId ]
2727
2828-- | All comments on an issue, by the issue's number.
2929--
3030-- > comments "thoughtbot" "paperclip" 635
3131comments :: String -> String -> Int -> IO (Either Error [IssueComment ])
32- comments user repoName issueNumber =
33- githubGet [" repos" , user, repoName , " issues" , show issueNumber , " comments" ]
32+ comments user reqRepoName reqIssueNumber =
33+ githubGet [" repos" , user, reqRepoName , " issues" , show reqIssueNumber , " comments" ]
3434
3535-- | All comments on an issue, by the issue's number, using authentication.
3636--
3737-- > comments' (GithubUser (user, password)) "thoughtbot" "paperclip" 635
3838comments' :: Maybe GithubAuth -> String -> String -> Int -> IO (Either Error [IssueComment ])
39- comments' auth user repoName issueNumber =
40- githubGet' auth [" repos" , user, repoName , " issues" , show issueNumber , " comments" ]
39+ comments' auth user reqRepoName reqIssueNumber =
40+ githubGet' auth [" repos" , user, reqRepoName , " issues" , show reqIssueNumber , " comments" ]
4141
4242
4343
0 commit comments