gotour: resolve ambiguous reference to PI

Some people were confused when math.Pi worked, but not math.PI.
Making this paragraph abstract helps.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5311084
diff --git a/static/index.html b/static/index.html
index 92045c9..f8840c9 100644
--- a/static/index.html
+++ b/static/index.html
@@ -181,8 +181,8 @@
 	<p>
 	In Go, a name is exported if it begins with a capital letter.
 	<p>
-	<code>Pi</code> is an exported name, as is <code>PI</code>.
-	The name <code>pi</code> is not exported.
+	<code>Foo</code> is an exported name, as is <code>FOO</code>.
+	The name <code>foo</code> is not exported.
 	<p>
 	Run the code. Then rename <code>math.pi</code> to <code>math.Pi</code>
 	and try it again.