aboutsummaryrefslogtreecommitdiff
path: root/src/os/file_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/file_unix.go')
-rw-r--r--src/os/file_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/file_unix.go b/src/os/file_unix.go
index 164d0c5977..11fdb19808 100644
--- a/src/os/file_unix.go
+++ b/src/os/file_unix.go
@@ -183,7 +183,7 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
// On OS X, sigaction(2) doesn't guarantee that SA_RESTART will cause
// open(2) to be restarted for regular files. This is easy to reproduce on
- // fuse file systems (see http://golang.org/issue/11180).
+ // fuse file systems (see https://golang.org/issue/11180).
if runtime.GOOS == "darwin" && e == syscall.EINTR {
continue
}