From: Russ Cox Date: Wed, 7 Mar 2012 15:21:56 +0000 (-0500) Subject: test: fix typo X-Git-Tag: weekly.2012-03-13~141 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=08854b022fec37e16d35e3e4e029e703f1911463;p=gostls13.git test: fix typo R=ken2 CC=golang-dev https://golang.org/cl/5752073 --- diff --git a/test/fixedbugs/bug424.go b/test/fixedbugs/bug424.go index 7ed324a095..c401af0b1d 100644 --- a/test/fixedbugs/bug424.go +++ b/test/fixedbugs/bug424.go @@ -5,7 +5,7 @@ // license that can be found in the LICENSE file. // Tests that method calls through an interface always -// call the the locally defined method localT.m independent +// call the locally defined method localT.m independent // at which embedding level it is and in which order // embedding is done.