docs: make "runtime" a word only as a name for the package.
Computer people have an agglutinating streak that I like to resist.
As a time of execution: run time.
As an adjective: run-time.
As a noun: run-time support/code/library.
Signed,
Mr. Pedant.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/4252048
diff --git a/doc/install.html b/doc/install.html
index d8fa8b4..09f5be5 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -54,7 +54,7 @@
</dl>
<p>
-Except for things like low-level operating system interface code, the runtime
+Except for things like low-level operating system interface code, the run-time
support is the same in all ports and includes a mark-and-sweep garbage collector
(a fancier one is in the works), efficient array and string slicing,
support for segmented stacks, and a strong goroutine implementation.
@@ -419,9 +419,9 @@
<code>$GOARM</code> (arm, default=6)
</dt>
<dd>
- The ARM architecture version the runtime libraries should target.
+ The ARM architecture version the run-time libraries should target.
ARMv6 cores have more efficient synchronization primitives. Setting
- <code>$GOARM</code> to 5 will compile the runtime libraries using
+ <code>$GOARM</code> to 5 will compile the run-time libraries using
just SWP instructions that work on older architectures as well.
Running v6 code on an older core will cause an illegal instruction trap.
</dd>