aboutsummaryrefslogtreecommitdiff
path: root/src/container
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2016-05-24 14:12:35 -0700
committerRobert Griesemer <gri@golang.org>2016-05-24 21:18:03 +0000
commit93e8e704996ce100fe46b2249324442947e47a9d (patch)
tree40b74fb948cfc13f4e441f6680cc5a7569a906a9 /src/container
parenta640d95172ec516a3b727a8ca796c64f5aea89ec (diff)
downloadgo-93e8e704996ce100fe46b2249324442947e47a9d.tar.gz
go-93e8e704996ce100fe46b2249324442947e47a9d.zip
all: fixed a handful of typos
Change-Id: Ib0683f27b44e2f107cca7a8dcc01d230cbcd5700 Reviewed-on: https://go-review.googlesource.com/23404 Reviewed-by: Alan Donovan <adonovan@google.com>
Diffstat (limited to 'src/container')
-rw-r--r--src/container/list/list_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/container/list/list_test.go b/src/container/list/list_test.go
index 4d8bfc2bf0..e3bfe53a49 100644
--- a/src/container/list/list_test.go
+++ b/src/container/list/list_test.go
@@ -326,7 +326,7 @@ func TestInsertAfterUnknownMark(t *testing.T) {
}
// Test that a list l is not modified when calling MoveAfter or MoveBefore with a mark that is not an element of l.
-func TestMoveUnkownMark(t *testing.T) {
+func TestMoveUnknownMark(t *testing.T) {
var l1 List
e1 := l1.PushBack(1)