aboutsummaryrefslogtreecommitdiff
path: root/src/syscall/env_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/syscall/env_windows.go')
-rw-r--r--src/syscall/env_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/env_windows.go b/src/syscall/env_windows.go
index 1606b424ca..74b154ec15 100644
--- a/src/syscall/env_windows.go
+++ b/src/syscall/env_windows.go
@@ -57,7 +57,7 @@ func Clearenv() {
for _, s := range Environ() {
// Environment variables can begin with =
// so start looking for the separator = at j=1.
- // http://blogs.msdn.com/b/oldnewthing/archive/2010/05/06/10008132.aspx
+ // https://blogs.msdn.com/b/oldnewthing/archive/2010/05/06/10008132.aspx
for j := 1; j < len(s); j++ {
if s[j] == '=' {
Unsetenv(s[0:j])