]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: add missing quotation mark
authorMatthew Dempsky <mdempsky@google.com>
Fri, 24 Jul 2015 21:55:07 +0000 (14:55 -0700)
committerMatthew Dempsky <mdempsky@google.com>
Fri, 24 Jul 2015 22:12:14 +0000 (22:12 +0000)
Change-Id: I102901e3df76830ccd5ab74d757203d103eef9e8
Reviewed-on: https://go-review.googlesource.com/12657
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/cmd/compile/doc.go

index 6025f32d33153c8c7797a442ba6acd8ed9131db0..e362657a006de85bc8fb142a02754ba9fdb46b2e 100644 (file)
@@ -119,7 +119,7 @@ preempted.
 
        //go:linkname localname importpath.name
 
-The //go:linkname directive instructs the compiler to use ``importpath.name' as the
+The //go:linkname directive instructs the compiler to use ``importpath.name'' as the
 object file symbol name for the variable or function declared as ``localname'' in the
 source code. Because this directive can subvert the type system and package
 modularity, it is only enabled in files that have imported "unsafe".