From 15995bda0b42464bfc6392b09a7de6e4ef0a0747 Mon Sep 17 00:00:00 2001 From: Nicolas Kaiser Date: Sat, 24 Nov 2012 11:07:06 +0100 Subject: [PATCH] Fix misspelled "across" --- examples/sorting-by-functions/sorting-by-functions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sorting-by-functions/sorting-by-functions.go b/examples/sorting-by-functions/sorting-by-functions.go index 19c24d9..ea498ab 100644 --- a/examples/sorting-by-functions/sorting-by-functions.go +++ b/examples/sorting-by-functions/sorting-by-functions.go @@ -18,7 +18,7 @@ type ByLength []string // We implement `sort.Interface` - `Len`, `Less`, and // `Swap` - on our type so we can use the `sort` package's // generic `Sort` function. `Len` and `Swap` -// will usually be similar accross types and `Less` will +// will usually be similar across types and `Less` will // hold the actual custom sorting logic. In our case we // want to sort in order of increasing string length, so // we use `len(s[i])` and `len(s[j])` here.