We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eda726c commit ab27382Copy full SHA for ab27382
include/git2/submodule.h
@@ -110,11 +110,10 @@ typedef enum {
110
/**
111
* Function pointer to receive each submodule
112
*
113
- * `sm` is the `git_submodule` currently being visited.
114
- *
115
- * `name` is the name of the submodule.
116
117
- * `payload` is the value you passed to the foreach function as payload.
+ * @param sm git_submodule currently being visited
+ * @param name name of the submodule
+ * @param payload value you passed to the foreach function as payload
+ * @return 0 on success or error code
118
*/
119
typedef int (*git_submodule_cb)(
120
git_submodule *sm, const char *name, void *payload);
0 commit comments