Skip to content

Commit 654fa95

Browse files
committed
Fix spell
1 parent a7e144f commit 654fa95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/issues/review_list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ func GetReviewsByIssueID(ctx context.Context, issueID int64) (ReviewList, Review
167167
}
168168

169169
// filter them in memory to get the latest review of each reviewer
170-
// Since the reviewes should not be too many for one issue, less than 100 commonly, it's acceptable to do this in memory
170+
// Since the reviews should not be too many for one issue, less than 100 commonly, it's acceptable to do this in memory
171171
// And since there are too less indexes in review table, it will be very slow to filter in the database
172172
reviewersMap := make(map[int64][]*Review) // key is reviewer id
173173
originalReviewersMap := make(map[int64][]*Review)

0 commit comments

Comments
 (0)