August Mueller 5 years ago
parent
commit
465d516b34
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.markdown

+ 1 - 1
README.markdown

@@ -241,7 +241,7 @@ FMResultSet *s = [db executeQuery:@"SELECT COUNT(*) FROM myTable"];
 if ([s next]) {
 if ([s next]) {
     int totalCount = [s intForColumnIndex:0];
     int totalCount = [s intForColumnIndex:0];
 }
 }
-[s close];  //  If you cannot confirm whether the result set is exhausted, you will need to call the -close method on the FMResultSet for safety.
+[s close];  // Call the -close method on the FMResultSet if you cannot confirm whether the result set is exhausted.
 ```
 ```
 
 
 `FMResultSet` has many methods to retrieve data in an appropriate format:
 `FMResultSet` has many methods to retrieve data in an appropriate format: