aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-28 20:44:39 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-28 20:44:39 -0700
commit7983414b33b43e76fc9766067b27060772150dbf (patch)
tree5adcac69cbe50affc7b9ff2185743dd9e62cada0 /include/fuse.h
parentb27033bc35dcef9d4a65788bd613473add3e3887 (diff)
Clean-up doxygen documentation
Fixes: #81.
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 4e7d46e..45c84ad 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -1079,12 +1079,12 @@ typedef struct fuse_fs *(*fuse_module_factory_t)(struct fuse_args *args,
/**
* Register filesystem module
*
- * If the "-omodules=@name_:..." option is present, filesystem
- * objects are created and pushed onto the stack with the @factory_
+ * If the "-omodules=*name*_:..." option is present, filesystem
+ * objects are created and pushed onto the stack with the *factory_*
* function.
*
- * @name_ the name of this filesystem module
- * @factory_ the factory function for this filesystem module
+ * @param name_ the name of this filesystem module
+ * @param factory_ the factory function for this filesystem module
*/
#define FUSE_REGISTER_MODULE(name_, factory_) \
fuse_module_factory_t fuse_module_ ## name_ ## _factory = factory_;