summaryrefslogtreecommitdiff
path: root/include/git2/diff.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-12-02 13:49:58 -0800
committerRussell Belfer <rb@github.com>2013-12-02 13:49:58 -0800
commitf62c174d0d88c3e491fe3f4e3490959edb7cae1b (patch)
treeef5e992d12b12bf36e69146af8afdd97a850ca4d /include/git2/diff.h
parent97ad85b88d7a2f6d1c31a07de3c3c0b4b504d4ee (diff)
downloadlibgit2-f62c174d0d88c3e491fe3f4e3490959edb7cae1b.tar.gz
GIT_DIFF_FIND_REMOVE_UNMODIFIED sounds better
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r--include/git2/diff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h
index 51ad349e3..db6bce2eb 100644
--- a/include/git2/diff.h
+++ b/include/git2/diff.h
@@ -525,14 +525,14 @@ typedef enum {
*/
GIT_DIFF_BREAK_REWRITES_FOR_RENAMES_ONLY = (1u << 15),
- /** Delete any UNMODIFIED records after find_similar is done.
+ /** Remove any UNMODIFIED deltas after find_similar is done.
*
* Using GIT_DIFF_FIND_COPIES_FROM_UNMODIFIED to emulate the
* --find-copies-harder behavior requires building a diff with the
* GIT_DIFF_INCLUDE_UNMODIFIED flag. If you do not want UNMODIFIED
* records in the final result, pass this flag to have them removed.
*/
- GIT_DIFF_FIND_DELETE_UNMODIFIED = (1u << 16),
+ GIT_DIFF_FIND_REMOVE_UNMODIFIED = (1u << 16),
} git_diff_find_t;
/**