From be68e518980d7c66637d0d1354ee3dff3bad66d7 Mon Sep 17 00:00:00 2001 From: claw Date: Wed, 13 May 2026 14:23:50 -0700 Subject: [PATCH] fix(vcs): address self-review NITs - gofmt alignment and comment clarity --- github/review.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/review.go b/github/review.go index 1d043e5..29e1639 100644 --- a/github/review.go +++ b/github/review.go @@ -103,7 +103,7 @@ func (c *Client) PostReview(ctx context.Context, owner, repo string, number int, // the resolved commit_id. for _, comment := range req.Comments { if comment.CommitID != "" { - if payload.CommitID == "" { + if payload.CommitID == "" { // only reachable when req.CommitID is empty payload.CommitID = comment.CommitID } else if payload.CommitID != comment.CommitID { return nil, ErrConflictingCommitIDs