From e620ded3930e9c9032421e6754d388be87f2a2e4 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 6 Mar 2013 17:18:25 +0100 Subject: [PATCH] Sane names yo --- repository.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repository.go b/repository.go index f785111..bfbd781 100644 --- a/repository.go +++ b/repository.go @@ -16,7 +16,7 @@ type Repository struct { ptr *C.git_repository } -func Open(path string) (*Repository, error) { +func OpenRepository(path string) (*Repository, error) { repo := new(Repository) cpath := C.CString(path) @@ -31,7 +31,7 @@ func Open(path string) (*Repository, error) { return repo, nil } -func Init(path string, isbare bool) (*Repository, error) { +func InitRepository(path string, isbare bool) (*Repository, error) { repo := new(Repository) cpath := C.CString(path)