Add canonical import comment

Signed-off-by: Daniel Nephin <dnephin@docker.com>

rewritten from github.com/moby/moby 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067
docker-18.09
Daniel Nephin 2018-02-05 16:05:59 -05:00 committed by Tonis Tiigi
parent 1f5fd4bb26
commit a3b7488b81
20 changed files with 20 additions and 20 deletions

View File

@ -1,5 +1,5 @@
// Package command contains the set of Dockerfile commands.
package command
package command // import "github.com/docker/docker/builder/dockerfile/command"
// Define constants for the command strings
const (

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import (
"fmt"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import (
"testing"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import (
"errors"

View File

@ -1,6 +1,6 @@
// +build !windows
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import "fmt"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import (
"fmt"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import (
"fmt"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import (
"strings"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import "strings"

View File

@ -1,4 +1,4 @@
package instructions
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
import "testing"

View File

@ -1,4 +1,4 @@
package parser
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
import (
"testing"

View File

@ -1,4 +1,4 @@
package parser
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
// line parsers are dispatch calls that parse a single unit of text into a
// Node object which contains the whole statement. Dockerfiles have varied

View File

@ -1,4 +1,4 @@
package parser
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
import (
"testing"

View File

@ -1,5 +1,5 @@
// Package parser implements a parser and parse tree dumper for Dockerfiles.
package parser
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
import (
"bufio"

View File

@ -1,4 +1,4 @@
package parser
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
import (
"bufio"

View File

@ -1,4 +1,4 @@
package parser
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
import (
"strings"

View File

@ -1,6 +1,6 @@
// +build !windows
package shell
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
// EqualEnvKeys compare two strings and returns true if they are equal. On
// Windows this comparison is case insensitive.

View File

@ -1,4 +1,4 @@
package shell
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
import "strings"

View File

@ -1,4 +1,4 @@
package shell
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
import (
"bytes"

View File

@ -1,4 +1,4 @@
package shell
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
import (
"bufio"