summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--branch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/branch.go b/branch.go
index 7a4e4cb..07f3f41 100644
--- a/branch.go
+++ b/branch.go
@@ -115,7 +115,7 @@ func (b *Branch) IsHead() (bool, error) {
}
-func (repo *Repository) BranchLookup(branchName string, bt BranchType) (*Branch, error) {
+func (repo *Repository) LookupBranch(branchName string, bt BranchType) (*Branch, error) {
branch := new(Branch)
cName := C.CString(branchName)