From d84a033d3d2315ad5805efb83ce910c185c702ff Mon Sep 17 00:00:00 2001 From: Zak Johnson Date: Tue, 21 Jan 2014 14:10:10 -0800 Subject: [PATCH] Fix comment typo in sorting-by-functions.go --- 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 ea498ab..3564da9 100644 --- a/examples/sorting-by-functions/sorting-by-functions.go +++ b/examples/sorting-by-functions/sorting-by-functions.go @@ -1,7 +1,7 @@ // Sometimes we'll want to sort a collection by something // other than its natural order. For example, suppose we // wanted to sort strings by their length instead of -// alphabetically. Here's an example of custom sorts sorts +// alphabetically. Here's an example of custom sorts // in Go. package main