From: Aaron Jacobs Date: Wed, 21 Oct 2015 04:51:02 +0000 (+1100) Subject: cmd/compile: remove a stray word in the go:nosplit documentation X-Git-Tag: go1.6beta1~771 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d8c6bf916e9afe3c53bfe781d2d42933d5c9626e;p=gostls13.git cmd/compile: remove a stray word in the go:nosplit documentation Change-Id: I7a85c0ad8aba2d50032c8faa58c83fb327f360cf Reviewed-on: https://go-review.googlesource.com/16140 Reviewed-by: Andrew Gerrand --- diff --git a/src/cmd/compile/doc.go b/src/cmd/compile/doc.go index e362657a00..59c660b2d5 100644 --- a/src/cmd/compile/doc.go +++ b/src/cmd/compile/doc.go @@ -107,7 +107,7 @@ The //line directive is an historical special case; all other directives are of The //go:noescape directive specifies that the next declaration in the file, which must be a func without a body (meaning that it has an implementation not written in Go) does not allow any of the pointers passed as arguments to escape into the -heap or into the values returned from the function. This information can be used as +heap or into the values returned from the function. This information can be used during the compiler's escape analysis of Go code calling the function. //go:nosplit