diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-12-23 10:44:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-23 10:44:54 -0700 |
commit | 2e25e3bb4285d41d223bb80b12658a2c9b9bf3e3 (patch) | |
tree | 55c07decf54c82fe1ca6d0c625c91c3f0102cf67 /page.go | |
parent | Merge pull request #636 from josharian/perf (diff) | |
parent | Allow GC to reclaim completed transactions (diff) | |
download | dedo-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.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |