From 37a594cf7beb0c5dd0838020baedefc272142d58 Mon Sep 17 00:00:00 2001 From: Rana Tarek Hassan Date: Sun, 24 Jul 2022 13:56:25 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: souleb Signed-off-by: Rana Tarek Hassan --- gitprovider/resources.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitprovider/resources.go b/gitprovider/resources.go index 2450bd75..1b48c615 100644 --- a/gitprovider/resources.go +++ b/gitprovider/resources.go @@ -80,7 +80,7 @@ type UserRepository interface { // Files gives access to this specific repository files Files() FileClient - // Trees gives access to this specific repository trees + // Trees gives access to this specific repository trees. Trees() TreeClient } @@ -160,7 +160,7 @@ type PullRequest interface { Get() PullRequestInfo } -// Tree represents a git tree which represents the hierarchy between files in a Git repository +// Tree represents a git tree which is the hierarchical structure of your git data. type Tree interface { // Object implements the Object interface, // allowing access to the underlying object returned from the API.