aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-11-17 17:37:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-11-17 17:37:15 +0200
commit81d08ed6587144baaec83522382119a7286a911e (patch)
tree6eaa995107c694e00f3c37d5927aceb552a6e307
parent5daaa1a6d9c8f5d3a4ad3d7009df564bc6506424 (diff)
Cosmetic changes
-rw-r--r--odb/mysql/connection-factory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/mysql/connection-factory.cxx b/odb/mysql/connection-factory.cxx
index aae5cb9..8604e9a 100644
--- a/odb/mysql/connection-factory.cxx
+++ b/odb/mysql/connection-factory.cxx
@@ -21,7 +21,7 @@
// This key is in the mysql client library. We use it to resolve the
// following problem: Some pthread implementations zero-out slots that
// don't have destructors during thread termination. As a result, when
-// out destructor gets called and we call mysql_thread_end(), the thread-
+// our destructor gets called and we call mysql_thread_end(), the thread-
// specific slot used by MySQL may have been reset to 0 and as a result
// MySQL thinks the data has been freed.
//
@@ -30,7 +30,7 @@
// the original value before calling mysql_thread_end(). This will work
// fine for as long as the following conditions are met:
//
-// 1. MySQL don't use the destructor itself.
+// 1. MySQL doesn't use the destructor itself.
// 2. Nobody else tried to call mysql_thread_end() before us.
//
#ifdef ODB_THREADS_POSIX