summaryrefslogtreecommitdiff
path: root/include/git2/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/tree.h')
-rw-r--r--include/git2/tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/tree.h b/include/git2/tree.h
index f2289fc7e..db24bf6ed 100644
--- a/include/git2/tree.h
+++ b/include/git2/tree.h
@@ -386,7 +386,7 @@ typedef int GIT_CALLBACK(git_treewalk_cb)(
/** Tree traversal modes */
typedef enum {
GIT_TREEWALK_PRE = 0, /* Pre-order */
- GIT_TREEWALK_POST = 1, /* Post-order */
+ GIT_TREEWALK_POST = 1 /* Post-order */
} git_treewalk_mode;
/**
@@ -428,7 +428,7 @@ typedef enum {
/** Update or insert an entry at the specified path */
GIT_TREE_UPDATE_UPSERT,
/** Remove an entry from the specified path */
- GIT_TREE_UPDATE_REMOVE,
+ GIT_TREE_UPDATE_REMOVE
} git_tree_update_t;
/**