Browse Source

Merge pull request #281 from DaleJefferson/master

Fix typo, should be FMDB.h not .m
August "Gus" Mueller 11 years ago
parent
commit
25fb1fc568
1 changed files with 1 additions and 1 deletions
  1. 1 1
      CHANGES_AND_TODO_LIST.txt

+ 1 - 1
CHANGES_AND_TODO_LIST.txt

@@ -17,7 +17,7 @@ If you would like to contribute some code- awesome!  I just ask that you make it
 
         - Move FMDB source files into three subdirectories, either src/fmdb, src/sample, or src/extras.
         - Renamed fmdb.m to main.m and moved it into src/sample so that it's clear its a sample and it won't be included in project for those users who manually drag fmdb source into their projects.
-        - Created FMDB.m for those users who would prefer to do a single #import and get all of the key headers. 
+        - Created FMDB.h for those users who would prefer to do a single #import and get all of the key headers. 
 
 2014.01.17
     It's never been safe to reentrantly call -[FMDatabaseQueue inDatabase:], as it would block.  Which can be kind of annoying - so now FMDB will crash instead (thanks to Mike Ash for the patch).