summaryrefslogtreecommitdiff
path: root/misc/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'misc/chrome')
-rw-r--r--misc/chrome/gophertool/gopher.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/chrome/gophertool/gopher.js b/misc/chrome/gophertool/gopher.js
index c09c4ef10c..09edb2957b 100644
--- a/misc/chrome/gophertool/gopher.js
+++ b/misc/chrome/gophertool/gopher.js
@@ -23,7 +23,7 @@ function urlForInput(t) {
}
if (gerritChangeIdRE.test(t)) {
- return "http://golang.org/cl/" + t;
+ return "https://golang.org/cl/" + t;
}
var match = commitRE.exec(t);
@@ -34,7 +34,7 @@ function urlForInput(t) {
if (pkgRE.test(t)) {
// TODO: make this smarter, using a list of packages + substring matches.
// Get the list from godoc itself in JSON format?
- return "http://golang.org/pkg/" + t;
+ return "https://golang.org/pkg/" + t;
}
return null;