aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/database.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/database.hxx')
-rw-r--r--odb/sqlite/database.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/odb/sqlite/database.hxx b/odb/sqlite/database.hxx
index 614ed63..e1e62cc 100644
--- a/odb/sqlite/database.hxx
+++ b/odb/sqlite/database.hxx
@@ -106,7 +106,7 @@ namespace odb
// optimal translation performance use 4-character schema names.
//
// The main connection and attached to it databases and connections are
- // all meant to be used withing the same thread. In particular, the
+ // all meant to be used within the same thread. In particular, the
// attached database holds a counted reference to the main connection
// which means the connection will not be released until all the
// attached to this connection databases are destroyed.
@@ -120,7 +120,7 @@ namespace odb
// less flexible: the current model allows attaching a different set of
// databases to different connections, attaching them on demand as the
// transaction progresses, etc. Also, the more convenient model can be
- // implemented on top this model by deriving an application-specific
+ // implemented on top of this model by deriving an application-specific
// database class and/or providing custom connection factories.
//
// Note that unless the name is a URI with appropriate mode, it is
@@ -152,6 +152,9 @@ namespace odb
// Move-constructible but not move-assignable.
//
+ // Note: noexcept is not specified since odb::database(odb::database&&)
+ // can throw.
+ //
#ifdef ODB_CXX11
database (database&&);
#endif