Skip to content

Commit

Permalink
Fix example code [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Aug 7, 2013
1 parent 0ac8b3e commit abbfafc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,16 +181,18 @@ simplicity and performance.
Collect your 20 most recent friends (twice).
</td>
<td>
<pre><code lang="ruby">2.times.collect do
Twitter.friends.take(20)
<pre><code lang="ruby">friends = Twitter.friends
2.times.collect do
friends.take(20)
end</code></pre>
</td>
<td>
<em>Θ(2n+2)</em>
</td>
<td>
<pre><code lang="ruby">2.times.collect do
Twitter.friends.take(20)
<pre><code lang="ruby">friends = Twitter.friends
2.times.collect do
friends.take(20)
end</code></pre>
</td>
<td>
Expand Down

0 comments on commit abbfafc

Please sign in to comment.