From 6b645513598aa3e06ef889fd47ab07d226a9bee4 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Wed, 22 Mar 2017 21:27:04 -0300 Subject: [PATCH] typo --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index b1eab7b92..84c416853 100644 --- a/config/config.go +++ b/config/config.go @@ -12,7 +12,7 @@ type Repo struct { Name string } -// String of ther repo, e.g. owner/name +// String of the repo, e.g. owner/name func (r Repo) String() string { return r.Owner + "/" + r.Name }