From dddcbb71c45932feef3c2d0fe6fbdf375b0de644 Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Thu, 12 Feb 2015 18:49:54 +0100 Subject: Remove "Graph" prefix on method names --- graph.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graph.go') diff --git a/graph.go b/graph.go index f7cf8e9..e5d7732 100644 --- a/graph.go +++ b/graph.go @@ -8,7 +8,7 @@ import ( "runtime" ) -func (repo *Repository) GraphDescendantOf(commit, ancestor *Oid) (bool, error) { +func (repo *Repository) DescendantOf(commit, ancestor *Oid) (bool, error) { runtime.LockOSThread() defer runtime.UnlockOSThread() @@ -20,7 +20,7 @@ func (repo *Repository) GraphDescendantOf(commit, ancestor *Oid) (bool, error) { return (ret > 0), nil } -func (repo *Repository) GraphAheadBehind(local, upstream *Oid) (ahead, behind int, err error) { +func (repo *Repository) AheadBehind(local, upstream *Oid) (ahead, behind int, err error) { runtime.LockOSThread() defer runtime.UnlockOSThread() -- cgit v1.2.3