Browse Source

Documentation cleanup

August Mueller 10 years ago
parent
commit
9227236eb6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/fmdb/FMDatabase.h

+ 2 - 2
src/fmdb/FMDatabase.h

@@ -891,7 +891,7 @@ typedef int(^FMDBExecuteStatementsCallbackBlock)(NSDictionary *resultsDictionary
 /** Adds SQL functions or aggregates or to redefine the behavior of existing SQL functions or aggregates.
 /** Adds SQL functions or aggregates or to redefine the behavior of existing SQL functions or aggregates.
  
  
  For example:
  For example:
- 
+ \code
     [queue inDatabase:^(FMDatabase *adb) {
     [queue inDatabase:^(FMDatabase *adb) {
 
 
         [adb executeUpdate:@"create table ftest (foo text)"];
         [adb executeUpdate:@"create table ftest (foo text)"];
@@ -922,7 +922,7 @@ typedef int(^FMDBExecuteStatementsCallbackBlock)(NSDictionary *resultsDictionary
         }
         }
         FMDBQuickCheck(rowCount == 2);
         FMDBQuickCheck(rowCount == 2);
     }];
     }];
-
+\endcode
  @param name Name of function
  @param name Name of function
 
 
  @param count Maximum number of parameters
  @param count Maximum number of parameters