aboutsummaryrefslogtreecommitdiff
path: root/odb/transaction.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-26 13:01:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-26 13:01:18 +0200
commitd4cc70f883208bb465929aacdc14ff8f734521ec (patch)
tree0008ccad9a966b69d3c1e31ba04f3c53bb43938e /odb/transaction.hxx
parentbb3024110a022c633f112c436bf225d0b4781fd5 (diff)
Fix a typo
Diffstat (limited to 'odb/transaction.hxx')
-rw-r--r--odb/transaction.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/transaction.hxx b/odb/transaction.hxx
index 71d17eb..a069209 100644
--- a/odb/transaction.hxx
+++ b/odb/transaction.hxx
@@ -24,7 +24,7 @@ namespace odb
explicit
transaction (transaction_impl*);
- // Unless the transaction has already been finilized (explicitly
+ // Unless the transaction has already been finalized (explicitly
// committed or rolled back), the destructor will roll it back.
//
~transaction ();
@@ -62,7 +62,7 @@ namespace odb
transaction& operator= (const transaction&);
protected:
- bool finilized_;
+ bool finalized_;
transaction_impl* impl_;
};