Commit ab273821 by joshaber

Play nice with the docs.

parent eda726cf
...@@ -110,11 +110,10 @@ typedef enum { ...@@ -110,11 +110,10 @@ typedef enum {
/** /**
* Function pointer to receive each submodule * Function pointer to receive each submodule
* *
* `sm` is the `git_submodule` currently being visited. * @param sm git_submodule currently being visited
* * @param name name of the submodule
* `name` is the name of the submodule. * @param payload value you passed to the foreach function as payload
* * @return 0 on success or error code
* `payload` is the value you passed to the foreach function as payload.
*/ */
typedef int (*git_submodule_cb)( typedef int (*git_submodule_cb)(
git_submodule *sm, const char *name, void *payload); git_submodule *sm, const char *name, void *payload);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment