Author: wyoung
Date: Fri Apr  4 01:37:41 2008
New Revision: 2267

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2267&view=rev
Log:
Comment fixes

Modified:
    trunk/lib/dbdriver.h

Modified: trunk/lib/dbdriver.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/dbdriver.h?rev=2267&r1=2266&r2=2267&view=diff
==============================================================================
--- trunk/lib/dbdriver.h (original)
+++ trunk/lib/dbdriver.h Fri Apr  4 01:37:41 2008
@@ -43,12 +43,12 @@
 ///
 /// This class does as little as possible to adapt between its public
 /// interface and the interface required by the underlying C API.  That
-/// is in fact its only mission.  The high-level interfaces indended for
-/// use by MySQL++ users are in DBDriver, Query, Result, and ResUse,
-/// all of which delegate the actual database communication to an object
-/// of this type, created by DBDriver.  If you really need access to
-/// the low-level database driver, get it via DBDriver::driver();
-/// don't create DBDriver objects directly.
+/// is, in fact, its only mission.  The high-level interfaces indended
+/// for use by MySQL++ users are in Connection, Query, Result, and
+/// ResUse, all of which delegate the actual database communication to
+/// an object of this type, created by Connection.  If you really need
+/// access to the low-level database driver, get it via
+/// Connection::driver(); don't create DBDriver objects directly.
 ///
 /// Currently this is a concrete class for wrapping the MySQL C API.
 /// In the future, it may be turned into an abstract base class, with
@@ -60,7 +60,7 @@
        /// \brief Result code returned by next_result()
        enum nr_code {
                nr_more_results,        ///< success, with more results to come
-               nr_last_result,         ///< success, last result recieved
+               nr_last_result,         ///< success, last result received
                nr_error,                       ///< problem retrieving next 
result
                nr_not_supported        ///< this C API doesn't support "next 
result"
        };


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to