Skip to content

Commit 7427fe1

Browse files
jianliao82liaojian
authored andcommitted
fix typo
fix typo Signed-off-by: jian liao <[email protected]>
1 parent 54b62e6 commit 7427fe1

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

daemon/links/links.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/docker/go-connections/nat"
99
)
1010

11-
// Link struct holds informations about parent/child linked container
11+
// Link struct holds information about parent/child linked container
1212
type Link struct {
1313
// Parent container IP address
1414
ParentIP string
@@ -43,7 +43,7 @@ func NewLink(parentIP, childIP, name string, env []string, exposedPorts map[nat.
4343
}
4444
}
4545

46-
// ToEnv creates a string's slice containing child container informations in
46+
// ToEnv creates a string's slice containing child container information in
4747
// the form of environment variables which will be later exported on container
4848
// startup.
4949
func (l *Link) ToEnv() []string {

dockerversion/version_lib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package dockerversion // import "github.com/docker/docker/dockerversion"
55

66
// Default build-time variable for library-import.
7-
// This file is overridden on build with build-time informations.
7+
// This file is overridden on build with build-time information.
88
const (
99
GitCommit = "library-import"
1010
Version = "library-import"

hack/make/.go-autogen

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cat > dockerversion/version_autogen.go <<DVEOF
1313
package dockerversion
1414
1515
// Default build-time variable for library-import.
16-
// This file is overridden on build with build-time informations.
16+
// This file is overridden on build with build-time information.
1717
const (
1818
GitCommit string = "$GITCOMMIT"
1919
Version string = "$VERSION"
@@ -35,7 +35,7 @@ cat > dockerversion/version_autogen_unix.go <<DVEOF
3535
package dockerversion
3636
3737
// Default build-time variable for library-import.
38-
// This file is overridden on build with build-time informations.
38+
// This file is overridden on build with build-time information.
3939
const (
4040
RuncCommitID string = "${RUNC_COMMIT}"
4141
InitCommitID string = "${TINI_COMMIT}"

hack/make/.go-autogen.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ try {
4141
package dockerversion
4242
4343
// Default build-time variable for library-import.
44-
// This file is overridden on build with build-time informations.
44+
// This file is overridden on build with build-time information.
4545
const (
4646
GitCommit string = "'+$CommitString+'"
4747
Version string = "'+$DockerVersion+'"

0 commit comments

Comments
 (0)