Sane names yo

This commit is contained in:
Vicent Marti 2013-03-06 17:18:25 +01:00
parent 60eac43943
commit e620ded393
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ type Repository struct {
ptr *C.git_repository ptr *C.git_repository
} }
func Open(path string) (*Repository, error) { func OpenRepository(path string) (*Repository, error) {
repo := new(Repository) repo := new(Repository)
cpath := C.CString(path) cpath := C.CString(path)
@ -31,7 +31,7 @@ func Open(path string) (*Repository, error) {
return repo, nil return repo, nil
} }
func Init(path string, isbare bool) (*Repository, error) { func InitRepository(path string, isbare bool) (*Repository, error) {
repo := new(Repository) repo := new(Repository)
cpath := C.CString(path) cpath := C.CString(path)