diff --git a/examples/goroutines/goroutines.go b/examples/goroutines/goroutines.go
index 88329e6..eed6ee2 100644
--- a/examples/goroutines/goroutines.go
+++ b/examples/goroutines/goroutines.go
@@ -30,9 +30,8 @@ func main() {
 
     // Our two function calls are running asynchronously in
     // separate goroutines now, so execution falls through
-    // to here. This `Scanln` code requires we press a key
+    // to here. This `Scanln` requires we press a key
     // before the program exits.
-    var input string
-    fmt.Scanln(&input)
+    fmt.Scanln()
     fmt.Println("done")
 }
diff --git a/examples/goroutines/goroutines.hash b/examples/goroutines/goroutines.hash
index 85df0eb..e86550b 100644
--- a/examples/goroutines/goroutines.hash
+++ b/examples/goroutines/goroutines.hash
@@ -1,2 +1,2 @@
-a847131d7f112172f9d5509fd3cf31aefb6d710e
-RW_RSAHfj-
+bfdaa0c8104c1257e6fea102fd26d476a3e8c14e
+6Y8t3Yxd1LD
diff --git a/public/goroutines b/public/goroutines
index 9fda47d..b1af6a0 100644
--- a/public/goroutines
+++ b/public/goroutines
@@ -39,7 +39,7 @@
             
           </td>
           <td class="code leading">
-	        <a href="http://play.golang.org/p/RW_RSAHfj-"><img title="Run code" src="play.png" class="run" /></a>
+	        <a href="http://play.golang.org/p/6Y8t3Yxd1LD"><img title="Run code" src="play.png" class="run" /></a>
             <div class="highlight"><pre><span class="kn">package</span> <span class="nx">main</span>
 </pre></div>
 
@@ -136,14 +136,13 @@ function call.</p>
           <td class="docs">
             <p>Our two function calls are running asynchronously in
 separate goroutines now, so execution falls through
-to here. This <code>Scanln</code> code requires we press a key
+to here. This <code>Scanln</code> requires we press a key
 before the program exits.</p>
 
           </td>
           <td class="code">
 	        
-            <div class="highlight"><pre>    <span class="kd">var</span> <span class="nx">input</span> <span class="kt">string</span>
-    <span class="nx">fmt</span><span class="p">.</span><span class="nx">Scanln</span><span class="p">(</span><span class="o">&amp;</span><span class="nx">input</span><span class="p">)</span>
+            <div class="highlight"><pre>    <span class="nx">fmt</span><span class="p">.</span><span class="nx">Scanln</span><span class="p">()</span>
     <span class="nx">fmt</span><span class="p">.</span><span class="nx">Println</span><span class="p">(</span><span class="s">&quot;done&quot;</span><span class="p">)</span>
 <span class="p">}</span>
 </pre></div>