1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

builder: fix typos in comments

Signed-off-by: Soshi Katsuta <soshi.katsuta@gmail.com>
Upstream-commit: 53e5f33279c6f21cfd9e8366d240124e62f8a11a
Component: engine
This commit is contained in:
Soshi Katsuta
2015-09-25 01:45:59 +09:00
parent 3a638e5279
commit 0577a33a45

View File

@@ -307,14 +307,14 @@ func (b *builder) isBuildArgAllowed(arg string) bool {
//
// ONBUILD is a special case; in this case the parser will emit:
// Child[Node, Child[Node, Node...]] where the first node is the literal
// "onbuild" and the child entrypoint is the command of the ONBUILD statmeent,
// "onbuild" and the child entrypoint is the command of the ONBUILD statement,
// such as `RUN` in ONBUILD RUN foo. There is special case logic in here to
// deal with that, at least until it becomes more of a general concern with new
// features.
func (b *builder) dispatch(stepN int, ast *parser.Node) error {
cmd := ast.Value
// To ensure the user is give a decent error message if the platform
// To ensure the user is given a decent error message if the platform
// on which the daemon is running does not support a builder command.
if err := platformSupports(strings.ToLower(cmd)); err != nil {
return err