summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-06-04 08:17:52 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-06-04 08:17:52 -0400
commit35f01f27014116dc2549b9d678ca7d90e59970dd (patch)
tree6fd2b4a6a39b6c982ebc9ed0a4912c9d0ced1027
parentd50443db36a79767313459d3f96ff7e0703fd07a (diff)
downloadmongo-35f01f27014116dc2549b9d678ca7d90e59970dd.tar.gz
The config-scan docs were mixed up, fix them.
-rw-r--r--src/include/wiredtiger_ext.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/wiredtiger_ext.h b/src/include/wiredtiger_ext.h
index 1d3f59c92d2..aeb446fd45c 100644
--- a/src/include/wiredtiger_ext.h
+++ b/src/include/wiredtiger_ext.h
@@ -135,8 +135,8 @@ struct __wt_extension_api {
*
* @param wt_api the extension handle
* @param session the session handle (or NULL if none available)
- * @param key configuration key string
* @param config a configuration string
+ * @param key configuration key string
* @param value the returned value
* @errors
*
@@ -153,7 +153,9 @@ struct __wt_extension_api {
*
* @param wt_api the extension handle
* @param session the session handle (or NULL if none available)
- * @param value the returned value
+ * @param str the configuration string to scan
+ * @param len the number of valid bytes in \c str
+ * @param[out] scanp a handle used to scan the config string
* @errors
*
* @snippet ex_data_source.c WT_EXTENSION config scan
@@ -181,10 +183,9 @@ struct __wt_extension_api {
* boolean \c "true" value.
*
* @param wt_api the extension handle
- * @param session the session handle (or NULL if none available)
- * @param str the configuration string to scan
- * @param len the number of valid bytes in \c str
- * @param[out] scanp a handle used to scan the config string
+ * @param scan the configuration scanner
+ * @param key the returned key
+ * @param value the returned value
* @errors
*
* @snippet ex_data_source.c WT_EXTENSION config scan