all: replace reference to plan9.bell-labs.com with 9p.io

Change-Id: I5fbe6f0f4a3bf99841fcbb4b47101ff5556db50d
Reviewed-on: https://go-review.googlesource.com/c/tools/+/191297
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Tobias Klauser 2019-08-22 09:30:48 +02:00 committed by Tobias Klauser
parent d72b05d2b1
commit 95c3470cfb
2 changed files with 2 additions and 4 deletions

View File

@ -287,8 +287,7 @@ func codewalkFileprint(w http.ResponseWriter, r *http.Request, f string) {
// addrToByte evaluates the given address starting at offset start in data.
// It returns the lo and hi byte offset of the matched region within data.
// See http://plan9.bell-labs.com/sys/doc/sam/sam.html Table II
// for details on the syntax.
// See http://9p.io/sys/doc/sam/sam.html Table II for details on the syntax.
func addrToByteRange(addr string, start int, data []byte) (lo, hi int, err error) {
var (
dir byte

View File

@ -16,8 +16,7 @@ import (
// but using Go-native regular expressions.
// To keep things reasonably close, this version uses (?m:re) for all user-provided
// regular expressions. That is the only change to the code from codewalk.go.
// See http://plan9.bell-labs.com/sys/doc/sam/sam.html Table II
// for details on the syntax.
// See http://9p.io/sys/doc/sam/sam.html Table II for details on the syntax.
// addrToByte evaluates the given address starting at offset start in data.
// It returns the lo and hi byte offset of the matched region within data.