aboutsummaryrefslogtreecommitdiff
path: root/page.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2016-12-23 10:44:54 -0700
committerGitHub <noreply@github.com>2016-12-23 10:44:54 -0700
commit2e25e3bb4285d41d223bb80b12658a2c9b9bf3e3 (patch)
tree55c07decf54c82fe1ca6d0c625c91c3f0102cf67 /page.go
parentMerge pull request #636 from josharian/perf (diff)
parentAllow GC to reclaim completed transactions (diff)
downloaddedo-2e25e3bb4285d41d223bb80b12658a2c9b9bf3e3.tar.gz
dedo-2e25e3bb4285d41d223bb80b12658a2c9b9bf3e3.tar.xz
Merge pull request #641 from josharian/cleanup
Minor cleanup and bug fixes
Diffstat (limited to 'page.go')
-rw-r--r--page.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/page.go b/page.go
index ccc6666..cde403a 100644
--- a/page.go
+++ b/page.go
@@ -154,7 +154,7 @@ func (a pgids) merge(b pgids) pgids {
return merged
}
-// merge copies the sorted union of a and b into dst.
+// mergepgids copies the sorted union of a and b into dst.
// If dst is too small, it panics.
func mergepgids(dst, a, b pgids) {
if len(dst) < len(a)+len(b) {