Typo fixes.

R=rsc
CC=go-dev
http://go/go-review/1026014
This commit is contained in:
David Symonds 2009-11-06 18:43:57 -08:00 committed by Russ Cox
parent f74beebb2f
commit 6ea866c04b
6 changed files with 6 additions and 6 deletions

View file

@ -168,7 +168,7 @@ type serverType struct {
// For example, rpc.Register() calls server.add().
var server = &serverType{serviceMap: make(map[string]*service)}
// Is this a publicly vislble - upper case - name?
// Is this a publicly visible - upper case - name?
func isPublic(name string) bool {
rune, _ := utf8.DecodeRuneInString(name);
return unicode.IsUpper(rune);