diff --git a/README.md b/README.md index 8f0c3ca41..22371f7f9 100644 --- a/README.md +++ b/README.md @@ -176,13 +176,13 @@ simplicity and performance. Are you at the start of the cursor? -
client.friends.first
+
client.friends.first
Θ(1) -
client.friends.first?
+
client.friends.first?
Θ(1) @@ -193,13 +193,13 @@ simplicity and performance. Return your most recent follower. -
client.friends.users.first
+
client.friends.users.first
Θ(1) -
client.friends.first
+
client.friends.first
Θ(1) @@ -210,13 +210,13 @@ simplicity and performance. Return an array of all your friends. -
client.friends.all
+
client.friends.all
Θ(n+1) -
client.friends.to_a
+
client.friends.to_a
Θ(n) @@ -227,13 +227,13 @@ simplicity and performance. Collect your 20 most recent friends. -
client.friends.take(20)
+
client.friends.take(20)
Θ(n+1) -
client.friends.take(20)
+
client.friends.take(20)
Θ(1) @@ -244,7 +244,7 @@ simplicity and performance. Collect your 20 most recent friends twice. -
friends = client.friends
+        
friends = client.friends
 2.times.collect do
   friends.take(20)
 end
@@ -253,7 +253,7 @@ end
Θ(2n+2) -
friends = client.friends
+        
friends = client.friends
 2.times.collect do
   friends.take(20)
 end