From 20999fcaa192517b12eb3334963d58c6fb436ede Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 12 Sep 2013 11:07:17 +0200 Subject: tdb: Fix some typos in comments. Thanks to Stewart A. Levin for reporting. fixes bug #10136 (Documentation typos). Signed-off-by: Bjoern Jacke Reviewed-by: Karolin Seeger Autobuild-User(master): Karolin Seeger Autobuild-Date(master): Thu Sep 12 13:54:41 CEST 2013 on sn-devel-104 --- lib/tdb/docs/README | 2 +- lib/tdb/include/tdb.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/tdb') diff --git a/lib/tdb/docs/README b/lib/tdb/docs/README index fe0e258183..be2224f1d8 100644 --- a/lib/tdb/docs/README +++ b/lib/tdb/docs/README @@ -64,7 +64,7 @@ TDB_CONTEXT *tdb_open(char *name, int hash_size, int tdb_flags, possible tdb_flags are: TDB_CLEAR_IF_FIRST - clear database if we are the only one with it open - TDB_INTERNAL - don't use a file, instaed store the data in + TDB_INTERNAL - don't use a file, instead store the data in memory. The filename is ignored in this case. TDB_NOLOCK - don't do any locking TDB_NOMMAP - don't use mmap diff --git a/lib/tdb/include/tdb.h b/lib/tdb/include/tdb.h index e371e33876..a34f089e66 100644 --- a/lib/tdb/include/tdb.h +++ b/lib/tdb/include/tdb.h @@ -132,7 +132,7 @@ struct tdb_logging_context { * @param[in] tdb_flags The flags to use to open the db:\n\n * TDB_CLEAR_IF_FIRST - Clear database if we are the * only one with it open\n - * TDB_INTERNAL - Don't use a file, instaed store the + * TDB_INTERNAL - Don't use a file, instead store the * data in memory. The filename is * ignored in this case.\n * TDB_NOLOCK - Don't do any locking\n @@ -168,7 +168,7 @@ struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags, * @param[in] tdb_flags The flags to use to open the db:\n\n * TDB_CLEAR_IF_FIRST - Clear database if we are the * only one with it open\n - * TDB_INTERNAL - Don't use a file, instaed store the + * TDB_INTERNAL - Don't use a file, instead store the * data in memory. The filename is * ignored in this case.\n * TDB_NOLOCK - Don't do any locking\n @@ -402,7 +402,7 @@ TDB_DATA tdb_nextkey(struct tdb_context *tdb, TDB_DATA key); /** * @brief Traverse the entire database. * - * While travering the function fn(tdb, key, data, state) is called on each + * While traversing the function fn(tdb, key, data, state) is called on each * element. If fn is NULL then it is not called. A non-zero return value from * fn() indicates that the traversal should stop. Traversal callbacks may not * start transactions. @@ -777,7 +777,7 @@ void tdb_enable_seqnum(struct tdb_context *tdb); * @brief Increment the tdb sequence number. * * This only works if the tdb has been opened using the TDB_SEQNUM flag or - * enabled useing tdb_enable_seqnum(). + * enabled using tdb_enable_seqnum(). * * @param[in] tdb The database to increment the sequence number. * -- cgit