From: Joe Tsai Date: Wed, 16 Dec 2015 19:26:26 +0000 (-0800) Subject: archive/tar: spell license correctly in example X-Git-Tag: go1.6beta1~41 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2ae895c0ce36ffb607442ff053bd19cb5fcd6fd6;p=gostls13.git archive/tar: spell license correctly in example Change-Id: Ice85d161f026a991953bd63ecc6ec80f8d06dfbd Reviewed-on: https://go-review.googlesource.com/17901 Run-TryBot: Joe Tsai Reviewed-by: Brad Fitzpatrick --- diff --git a/src/archive/tar/example_test.go b/src/archive/tar/example_test.go index 2317f44e96..5f0ce2f402 100644 --- a/src/archive/tar/example_test.go +++ b/src/archive/tar/example_test.go @@ -26,7 +26,7 @@ func Example() { }{ {"readme.txt", "This archive contains some text files."}, {"gopher.txt", "Gopher names:\nGeorge\nGeoffrey\nGonzo"}, - {"todo.txt", "Get animal handling licence."}, + {"todo.txt", "Get animal handling license."}, } for _, file := range files { hdr := &tar.Header{ @@ -76,5 +76,5 @@ func Example() { // Geoffrey // Gonzo // Contents of todo.txt: - // Get animal handling licence. + // Get animal handling license. }