From: Russ Cox Date: Fri, 11 Dec 2015 16:35:36 +0000 (-0500) Subject: doc: fix typo "heirarchy" X-Git-Tag: go1.6beta1~103 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cf49b35bd000279137c353fbdc9c02610b67be27;p=gostls13.git doc: fix typo "heirarchy" Change-Id: Iae2bf44ec15975f440d026fd52fcccfbd9c598d9 Reviewed-on: https://go-review.googlesource.com/17740 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go_faq.html b/doc/go_faq.html index f198379fe5..bcd12075b6 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -885,7 +885,7 @@ Go separates the notion of what a type does—its methods—from the type's implementation. If two methods return different types, they are not doing the same thing. Programmers who want covariant result types are often trying to -express a type heirarchy through interfaces. +express a type hierarchy through interfaces. In Go it's more natural to have a clean separation between interface and implementation.