Skip to content

Commit

Permalink
fix: remove a extra characters in url path (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
victory460 authored Mar 21, 2022
1 parent ff14d06 commit 918f939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion changes_revision.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func (s *ChangesService) GetDraft(changeID, revisionID, draftID string) (*Commen
//
// Gerrit API docs: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#get-comment
func (s *ChangesService) GetComment(changeID, revisionID, commentID string) (*CommentInfo, *Response, error) {
u := fmt.Sprintf("changes/%s/revisions/%s//comments/%s", changeID, revisionID, commentID)
u := fmt.Sprintf("changes/%s/revisions/%s/comments/%s", changeID, revisionID, commentID)
return s.getCommentInfoResponse(u)
}

Expand Down

0 comments on commit 918f939

Please sign in to comment.