present: fix typo

Fixes golang/go#18670.

Change-Id: Ia4e0d6b1d8fd78a165e31e72c17f520850da7a3f
Reviewed-on: https://go-review.googlesource.com/35258
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
gulyasm 2017-01-15 20:31:16 +00:00 committed by Brad Fitzpatrick
parent 0d047c8d5a
commit 608c3b098a
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ func parseIframe(ctx *Context, fileName string, lineno int, text string) (Elem,
i.Width = v
}
default:
return nil, fmt.Errorf("incorrect image invocation: %q", text)
return nil, fmt.Errorf("incorrect iframe invocation: %q", text)
}
return i, nil
}