aboutsummaryrefslogtreecommitdiff
path: root/meta.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-03-08 19:45:56 -0800
committerBen Johnson <benbjohnson@yahoo.com>2014-03-08 19:45:56 -0800
commit4e252b8a7f3df03ff8a079de1e3d7c64f0fcde6d (patch)
tree93ac43914f9cd20c8eea13f18105e55026a7ea8d /meta.go
parentMerge pull request #60 from benbjohnson/tx (diff)
parentConsolidate Tx and RWTx. (diff)
downloaddedo-4e252b8a7f3df03ff8a079de1e3d7c64f0fcde6d.tar.gz
dedo-4e252b8a7f3df03ff8a079de1e3d7c64f0fcde6d.tar.xz
Merge pull request #61 from benbjohnson/merge-tx
Consolidate Tx and RWTx
Diffstat (limited to 'meta.go')
-rw-r--r--meta.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta.go b/meta.go
index cee2d29..0be4e94 100644
--- a/meta.go
+++ b/meta.go
@@ -36,7 +36,7 @@ func (m *meta) copy(dest *meta) {
// write writes the meta onto a page.
func (m *meta) write(p *page) {
- // Page id is either going to be 0 or 1 which we can determine by the Txn ID.
+ // Page id is either going to be 0 or 1 which we can determine by the transaction ID.
p.id = pgid(m.txid % 2)
p.flags |= metaPageFlag