Fix typo in notmuch.h documentation regarding database open modes

Reviewed-by: Carl Worth <cworth@cworth.org>:

The original proposal for having different open modes used the name
WRITABLE. I didn't like that name, (easy to misspell as WRITEABLE even
for native English speakers). So we renamed it to READ_WRITE
immediately, but apparently some of the documentation held the old
name for a while.
This commit is contained in:
Michael Forney 2010-03-26 18:39:17 +00:00 committed by Carl Worth
parent 9091f0fe74
commit 9ddde6eb14

View file

@ -156,7 +156,7 @@ typedef enum {
* (not necessarily by this process), by calling * (not necessarily by this process), by calling
* notmuch_database_create with 'path'. By default the database should be * notmuch_database_create with 'path'. By default the database should be
* opened for reading only. In order to write to the database you need to * opened for reading only. In order to write to the database you need to
* pass the NOTMUCH_DATABASE_MODE_WRITABLE mode. * pass the NOTMUCH_DATABASE_MODE_READ_WRITE mode.
* *
* An existing notmuch database can be identified by the presence of a * An existing notmuch database can be identified by the presence of a
* directory named ".notmuch" below 'path'. * directory named ".notmuch" below 'path'.