From 6240b0110ac0c3875ab2943ef2569b1689882178 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 17 Nov 2009 11:44:15 -0800 Subject: [PATCH] improve documentation of runtime. there was no mention of types. R=rsc CC=golang-dev https://golang.org/cl/157042 --- src/pkg/runtime/extern.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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