Skip to content

Commit

Permalink
all: remove many cases of space-space
Browse files Browse the repository at this point in the history
Change-Id: I49eb8410d4143c67dfccf027f8b2794e66963415
Reviewed-on: https://go-review.googlesource.com/c/tools/+/212580
Reviewed-by: Rebecca Stambler <[email protected]>
Run-TryBot: Rebecca Stambler <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
  • Loading branch information
kortschak authored and stamblerre committed Dec 30, 2019
1 parent c949812 commit f67ffd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vfs/emptyvfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (e *emptyVFS) Open(path string) (ReadSeekCloser, error) {
return nil, os.ErrNotExist
}

// Stat returns os.FileInfo for an empty directory if the path is
// Stat returns os.FileInfo for an empty directory if the path is
// is root "/" or error. os.FileInfo is implemented by emptyVFS
func (e *emptyVFS) Stat(path string) (os.FileInfo, error) {
if path == "/" {
Expand Down
2 changes: 1 addition & 1 deletion vfs/namespace.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const debugNS = false
// mount point and have the system behave as if the union of those
// file systems were present at the mount point.
// For example, if the OS file system has a Go installation in
// c:\Go and additional Go path trees in d:\Work1 and d:\Work2, then
// c:\Go and additional Go path trees in d:\Work1 and d:\Work2, then
// this name space creates the view we want for the godoc server:
//
// NameSpace{
Expand Down

0 comments on commit f67ffd6

Please sign in to comment.