Reviewers: golang-dev_googlegroups.com,
Message:
Hello golang-dev@googlegroups.com,
I'd like you to review this change to
https://code.google.com/p/go.talks
Description:
present: Fix typo in a comment.
Please review this at https://codereview.appspot.com/6907059/
Affected files:
M pkg/present/parse.go
Index: pkg/present/parse.go
===================================================================
--- a/pkg/present/parse.go
+++ b/pkg/present/parse.go
@@ -40,7 +40,7 @@ func (d *Doc) Render(w io.Writer, t *tem
type ParseFunc func(fileName string, lineNumber int, inputLine string)
(Elem, error)
-// Register binds the named action, which does not being with a period, to
the
+// Register binds the named action, which does not begin with a period, to
the
// specified parser to be invoked when the name, with a period, appears in
the
// present input text.
func Register(name string, parser ParseFunc) {