remove dead link

This commit is contained in:
Sami Samhuri 2012-03-31 16:11:50 -07:00
parent d8f921a59b
commit 874f8b9b84

View file

@ -24,7 +24,7 @@ First you need <a href="http://pragdave.pragprog.com/pragdave/2005/11/symbolto_p
<span class="keyword">end</span>
</code></pre></div>
Next we define <code>String#to_proc</code>, which is nearly identical to the <a href="http://samhuri.net/blog/2007-05-03_array-to_proc-a-complement-to-symbol-to_proc.html"><code>Array#to_proc</code></a> method I previously wrote about.
Next we define <code>String#to_proc</code>, which is nearly identical to the <code>Array#to_proc</code> method I previously wrote about.
<div class="typocode"><div class="codetitle">String#to_proc</div><pre><code class="typocode_ruby "><span class="keyword">class </span><span class="class">String</span>
<span class="comment"># Turns a string into a proc.</span>