diff options
Diffstat (limited to 'libgo/go/path/path.go')
-rw-r--r-- | libgo/go/path/path.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/path/path.go b/libgo/go/path/path.go index 01071a9..c1d4d8a 100644 --- a/libgo/go/path/path.go +++ b/libgo/go/path/path.go @@ -48,7 +48,7 @@ func (b *lazybuf) string() string { } // Clean returns the shortest path name equivalent to path -// by purely lexical processing. It applies the following rules +// by purely lexical processing. It applies the following rules // iteratively until no further processing can be done: // // 1. Replace multiple slashes with a single slash. @@ -65,7 +65,7 @@ func (b *lazybuf) string() string { // // See also Rob Pike, ``Lexical File Names in Plan 9 or // Getting Dot-Dot Right,'' -// http://plan9.bell-labs.com/sys/doc/lexnames.html +// https://9p.io/sys/doc/lexnames.html func Clean(path string) string { if path == "" { return "." |