From: James Neve Date: Thu, 20 Apr 2017 09:26:05 +0000 (+0900) Subject: doc: escape some HTML in Effective Go code examples X-Git-Tag: go1.9beta1~597 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=868bb5d2f28909fa88c7d467aac655d014e50893;p=gostls13.git doc: escape some HTML in Effective Go code examples Change-Id: I4204e268c7220a50ceb270432067850ec2b5af80 Reviewed-on: https://go-review.googlesource.com/41230 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/effective_go.html b/doc/effective_go.html index bbd7f24d48..bc70b0c8e3 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1833,7 +1833,7 @@ for a min function that chooses the least of a list of integers:

 func Min(a ...int) int {
-    min := int(^uint(0) >> 1)  // largest int
+    min := int(^uint(0) >> 1)  // largest int
     for _, i := range a {
         if i < min {
             min = i