Skip to content

Commit 27c8720

Browse files
committedMar 9, 2015
all: add import comments
Change-Id: I30a2b0dec44e3a41e06e418c3d7162da36b60510 Reviewed-on: https://go-review.googlesource.com/5710 Reviewed-by: Andrew Gerrand <adg@golang.org>
1 parent 6102c36 commit 27c8720

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed
 

‎gotour/tour.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
package main
5+
package main // import "golang.org/x/tour/gotour"
66

77
import (
88
"bytes"

‎pic/pic.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
package pic
5+
package pic // import "golang.org/x/tour/pic"
66

77
import (
88
"bytes"

‎reader/validate.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
package reader
1+
// Copyright 2014 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package reader // import "golang.org/x/tour/reader"
26

37
import (
48
"fmt"

‎tree/tree.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
package tree
5+
package tree // import "golang.org/x/tour/tree"
66

77
import (
88
"fmt"

‎wc/wc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
package wc
5+
package wc // import "golang.org/x/tour/wc"
66

77
import "fmt"
88

0 commit comments

Comments
 (0)
Please sign in to comment.