eval: document that Thread.Locals are accessible to Go, not Skylark (#78)

diff --git a/eval.go b/eval.go
index 8f2ab04..80d61b7 100644
--- a/eval.go
+++ b/eval.go
@@ -41,7 +41,8 @@
 	// See example_test.go for some example implementations of Load.
 	Load func(thread *Thread, module string) (StringDict, error)
 
-	// locals holds arbitrary "thread-local" values belonging to the client.
+	// locals holds arbitrary "thread-local" Go values belonging to the client.
+	// They are accessible to the client but not to any Skylark program.
 	locals map[string]interface{}
 }