Browse Source

Update comments for online documentation

Robert M. Ryan 8 years ago
parent
commit
1da3a20b00
3 changed files with 9 additions and 15 deletions
  1. 3 5
      src/fmdb/FMDatabase.h
  2. 3 5
      src/fmdb/FMDatabasePool.h
  3. 3 5
      src/fmdb/FMDatabaseQueue.h

+ 3 - 5
src/fmdb/FMDatabase.h

@@ -690,11 +690,9 @@ typedef NS_ENUM(int, FMDBCheckpointMode) {
              an exclusive transaction, not a deferred transaction. This behavior
              is likely to change in future versions of FMDB, whereby this method
              will likely eventually adopt standard SQLite behavior and perform
-             deferred transactions.
- 
-             If you really need exclusive tranaction, it is recommended that you
-             use `beginExclusiveTransaction`, instead, not only to make your intent
-             explicit, but also to future-proof your code.
+             deferred transactions. If you really need exclusive tranaction, it is
+             recommended that you use `beginExclusiveTransaction`, instead, not
+             only to make your intent explicit, but also to future-proof your code.
 
  */
 

+ 3 - 5
src/fmdb/FMDatabasePool.h

@@ -206,11 +206,9 @@ NS_ASSUME_NONNULL_BEGIN
             an exclusive transaction, not a deferred transaction. This behavior
             is likely to change in future versions of FMDB, whereby this method
             will likely eventually adopt standard SQLite behavior and perform
-            deferred transactions.
-
-            If you really need exclusive tranaction, it is recommended that you
-            use `inExclusiveTransaction`, instead, not only to make your intent
-            explicit, but also to future-proof your code.
+            deferred transactions. If you really need exclusive tranaction, it is
+            recommended that you use `inExclusiveTransaction`, instead, not only
+            to make your intent explicit, but also to future-proof your code.
   */
 
 - (void)inTransaction:(__attribute__((noescape)) void (^)(FMDatabase *db, BOOL *rollback))block;

+ 3 - 5
src/fmdb/FMDatabaseQueue.h

@@ -210,11 +210,9 @@ NS_ASSUME_NONNULL_BEGIN
              an exclusive transaction, not a deferred transaction. This behavior
              is likely to change in future versions of FMDB, whereby this method
              will likely eventually adopt standard SQLite behavior and perform
-             deferred transactions.
- 
-             If you really need exclusive tranaction, it is recommended that you
-             use `inExclusiveTransaction`, instead, not only to make your intent
-             explicit, but also to future-proof your code.
+             deferred transactions. If you really need exclusive tranaction, it is
+             recommended that you use `inExclusiveTransaction`, instead, not only
+             to make your intent explicit, but also to future-proof your code.
 
  */