aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-11-17 11:44:15 -0800
committerRob Pike <r@golang.org>2009-11-17 11:44:15 -0800
commit6240b0110ac0c3875ab2943ef2569b1689882178 (patch)
treee7d3fbe3bcbaece1711f50b73bcd2d55b32fa968
parentc7ec6ef8594f4b66a17e9306f8c92ec9544b3b5a (diff)
downloadgo-6240b0110ac0c3875ab2943ef2569b1689882178.tar.gz
go-6240b0110ac0c3875ab2943ef2569b1689882178.zip
improve documentation of runtime. there was no mention of types.
R=rsc CC=golang-dev https://golang.org/cl/157042
-rw-r--r--src/pkg/runtime/extern.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go
index b4f4f2b319..575caf1f21 100644
--- a/src/pkg/runtime/extern.go
+++ b/src/pkg/runtime/extern.go
@@ -4,7 +4,9 @@
/*
The runtime package contains operations that interact with Go's runtime system,
- such as functions to control goroutines.
+ such as functions to control goroutines. It also includes the low-level type information
+ used by the reflect package; see reflect's documentation for the programmable
+ interface to the run-time type system.
*/
package runtime