Upgrade rules_go and gazelle
I want to use the new runfiles library that comes in rules_go.
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I7c301ead2642fb2f172ad5a10824165a58d2d053
diff --git a/scouting/webserver/requests/requests.go b/scouting/webserver/requests/requests.go
index c59e7c5..bf24140 100644
--- a/scouting/webserver/requests/requests.go
+++ b/scouting/webserver/requests/requests.go
@@ -119,7 +119,7 @@
// Parses the authorization information that the browser inserts into the
// headers. The authorization follows this format:
//
-// req.Headers["Authorization"] = []string{"Basic <base64 encoded username:password>"}
+// req.Headers["Authorization"] = []string{"Basic <base64 encoded username:password>"}
func parseUsername(req *http.Request) string {
auth, ok := req.Header["Authorization"]
if !ok {