Skip to content

Commit

Permalink
sort: change let to let's
Browse files Browse the repository at this point in the history
Trivial typo

Change-Id: I3804f365519453bfa19997f55ead34742ac1a9db
GitHub-Last-Rev: 0e04e92
GitHub-Pull-Request: #29930
Reviewed-on: https://go-review.googlesource.com/c/159479
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
  • Loading branch information
GiantsLoveDeathMetal authored and odeke-em committed Jan 27, 2019
1 parent 8c10ce1 commit 4e056ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sort/sort.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func doPivot(data Interface, lo, hi int) (midlo, midhi int) {
c--
}
// If hi-c<3 then there are duplicates (by property of median of nine).
// Let be a bit more conservative, and set border to 5.
// Let's be a bit more conservative, and set border to 5.
protect := hi-c < 5
if !protect && hi-c < (hi-lo)/4 {
// Lets test some points for equality to pivot
Expand Down

0 comments on commit 4e056ad

Please sign in to comment.