From dd0525006a595d8cf4df3fdb19bef5eabc9508d0 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 20 Sep 2017 15:41:52 +0900 Subject: [PATCH] fix typo --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 2ba4433..a638ae2 100644 --- a/main.go +++ b/main.go @@ -39,7 +39,7 @@ func makeHandler(name string, dev bool, fn func(http.ResponseWriter, *http.Reque // for backwards-compatibility, we must support URLs formatted as // /report/[org]/[repo] // and they will be assumed to be github.com URLs. This is because - // at first Go Report Card only supported github.com URLs, and assumed + // at first Go Report Card only supported github.com URLs, and // took only the org name and repo name as parameters. This is no longer the // case, but we do not want external links to break. oldFormat := regexp.MustCompile(fmt.Sprintf(`^/%s/([a-zA-Z0-9\-_]+)/([a-zA-Z0-9\-_]+)$`, name))