From: Dmitriy Vyukov Date: Sat, 27 Jul 2013 09:54:34 +0000 (+0400) Subject: misc/dashboard: fix typo in comment X-Git-Tag: go1.2rc2~927 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7da7d71cf42f203aefe2c8f2bc0e934b095e5491;p=gostls13.git misc/dashboard: fix typo in comment R=golang-dev, r CC=golang-dev https://golang.org/cl/11936045 --- diff --git a/misc/dashboard/app/build/build.go b/misc/dashboard/app/build/build.go index e0c0f0048f..47ad8dec50 100644 --- a/misc/dashboard/app/build/build.go +++ b/misc/dashboard/app/build/build.go @@ -123,7 +123,7 @@ func (c *Commit) Valid() error { // build history and the AppEngine datastore limit of 1mb. const maxResults = 1000 -// AddResult adds the denormalized Reuslt data to the Commit's Result field. +// AddResult adds the denormalized Result data to the Commit's Result field. // It must be called from inside a datastore transaction. func (com *Commit) AddResult(c appengine.Context, r *Result) error { if err := datastore.Get(c, com.Key(c), com); err != nil {