diff options
author | Josh Bleecher Snyder <josharian@gmail.com> | 2016-12-22 17:05:52 -0800 |
---|---|---|
committer | Josh Bleecher Snyder <josharian@gmail.com> | 2016-12-23 08:56:04 -0800 |
commit | 1858583b3b0b9db3794a35fa9689c8c351363dbf (patch) | |
tree | 0f88c13603617db27ffd9dedb399dd05bec38ee4 /page.go | |
parent | Merge pull request #636 from josharian/perf (diff) | |
download | dedo-1858583b3b0b9db3794a35fa9689c8c351363dbf.tar.gz dedo-1858583b3b0b9db3794a35fa9689c8c351363dbf.tar.xz |
Clean up after #636
freelist.lenall duplicated freelist.count.
freelist.copyall and mergepgids docs had typos.
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) { |