Skip to content

Commit

Permalink
all: add import comments
Browse files Browse the repository at this point in the history
Change-Id: I30a2b0dec44e3a41e06e418c3d7162da36b60510
Reviewed-on: https://go-review.googlesource.com/5710
Reviewed-by: Andrew Gerrand <adg@golang.org>
  • Loading branch information
adg committed Mar 9, 2015
1 parent 6102c36 commit 27c8720
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gotour/tour.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package main
package main // import "golang.org/x/tour/gotour"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion pic/pic.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package pic
package pic // import "golang.org/x/tour/pic"

import (
"bytes"
Expand Down
6 changes: 5 additions & 1 deletion reader/validate.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
package reader
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package reader // import "golang.org/x/tour/reader"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion tree/tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package tree
package tree // import "golang.org/x/tour/tree"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion wc/wc.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package wc
package wc // import "golang.org/x/tour/wc"

import "fmt"

Expand Down

0 comments on commit 27c8720

Please sign in to comment.