Skip to content

Commit

Permalink
Remove language hints [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Nov 28, 2013
1 parent 8fd5028 commit 4d05393
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,13 @@ simplicity and performance.
Are you at the start of the cursor?
</td>
<td>
<pre><code lang="ruby">client.friends.first</code></pre>
<pre><code>client.friends.first</code></pre>
</td>
<td>
<em>Θ(1)</em>
</td>
<td>
<pre><code lang="ruby">client.friends.first?</code></pre>
<pre><code>client.friends.first?</code></pre>
</td>
<td>
<em>Θ(1)</em>
Expand All @@ -193,13 +193,13 @@ simplicity and performance.
Return your most recent follower.
</td>
<td>
<pre><code lang="ruby">client.friends.users.first</code></pre>
<pre><code>client.friends.users.first</code></pre>
</td>
<td>
<em>Θ(1)</em>
</td>
<td>
<pre><code lang="ruby">client.friends.first</code></pre>
<pre><code>client.friends.first</code></pre>
</td>
<td>
<em>Θ(1)</em>
Expand All @@ -210,13 +210,13 @@ simplicity and performance.
Return an array of all your friends.
</td>
<td>
<pre><code lang="ruby">client.friends.all</code></pre>
<pre><code>client.friends.all</code></pre>
</td>
<td>
<em>Θ(n+1)</em>
</td>
<td>
<pre><code lang="ruby">client.friends.to_a</code></pre>
<pre><code>client.friends.to_a</code></pre>
</td>
<td>
<em>Θ(n)</em>
Expand All @@ -227,13 +227,13 @@ simplicity and performance.
Collect your 20 most recent friends.
</td>
<td>
<pre><code lang="ruby">client.friends.take(20)</code></pre>
<pre><code>client.friends.take(20)</code></pre>
</td>
<td>
<em>Θ(n+1)</em>
</td>
<td>
<pre><code lang="ruby">client.friends.take(20)</code></pre>
<pre><code>client.friends.take(20)</code></pre>
</td>
<td>
<em>Θ(1)</em>
Expand All @@ -244,7 +244,7 @@ simplicity and performance.
Collect your 20 most recent friends twice.
</td>
<td>
<pre><code lang="ruby">friends = client.friends
<pre><code>friends = client.friends
2.times.collect do
friends.take(20)
end</code></pre>
Expand All @@ -253,7 +253,7 @@ end</code></pre>
<em>Θ(2n+2)</em>
</td>
<td>
<pre><code lang="ruby">friends = client.friends
<pre><code>friends = client.friends
2.times.collect do
friends.take(20)
end</code></pre>
Expand Down

0 comments on commit 4d05393

Please sign in to comment.