aboutsummaryrefslogtreecommitdiff
path: root/lib/ints
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2020-05-16 19:52:33 +0700
committerShulhan <m.shulhan@gmail.com>2020-05-16 19:52:33 +0700
commit56c992b6d3597e37e5dbfd7bbd63b7f1311c8b8e (patch)
tree1fb660ab438c39d5ea9c99b2beb60126df3a77b7 /lib/ints
parent04a7f25930191e76928f575d796d2972811a4fac (diff)
downloadpakakeh.go-56c992b6d3597e37e5dbfd7bbd63b7f1311c8b8e.tar.xz
all: fix and suppress linter warnings
Diffstat (limited to 'lib/ints')
-rw-r--r--lib/ints/ints.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ints/ints.go b/lib/ints/ints.go
index 188342d7..aea2414a 100644
--- a/lib/ints/ints.go
+++ b/lib/ints/ints.go
@@ -393,7 +393,7 @@ func inplaceMultiswap(d []int, idx []int, x, y, ylast int) int {
return y
}
-// (4.3.4) LET Y := the minimum value between x and r on `d`
+// (4.3.4) LET Y := the minimum value between x and r on `d`.
func minY(d []int, x, y *int, r int, asc bool) {
for *x < r {
if asc {