summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-09-24 09:30:02 -0700
committerRussell Belfer <rb@github.com>2013-09-24 09:30:02 -0700
commitd89b8b60d1ac49f0147c18db1ce935bf6155ff45 (patch)
tree76af30c252afaf9409e0bd8d6c54a978cc3e6419 /include/git2
parent10edb7a92a6d9b886f3dea083dba0aaba1851200 (diff)
parente3f3868a1c4ced6109cbd4644cb1e3e8e9d8a5e9 (diff)
downloadlibgit2-d89b8b60d1ac49f0147c18db1ce935bf6155ff45.tar.gz
Merge pull request #1867 from ethomson/remove_not_delete
'del' instead of 'delete' for the poor C++ users
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/sys/refdb_backend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/sys/refdb_backend.h b/include/git2/sys/refdb_backend.h
index 9b457b074..e0a24f433 100644
--- a/include/git2/sys/refdb_backend.h
+++ b/include/git2/sys/refdb_backend.h
@@ -103,7 +103,7 @@ struct git_refdb_backend {
* Deletes the given reference from the refdb. A refdb implementation
* must provide this function.
*/
- int (*delete)(git_refdb_backend *backend, const char *ref_name);
+ int (*del)(git_refdb_backend *backend, const char *ref_name);
/**
* Suggests that the given refdb compress or optimize its references.