Fix comment typo in sorting-by-functions.go

This commit is contained in:
Zak Johnson 2014-01-21 14:10:10 -08:00
parent cc39d32551
commit d84a033d3d

View File

@ -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