Skip to content

Commit

Permalink
Added two missing dots in code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dblack committed Sep 30, 2012
1 parent 6bc2e6d commit bf231cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ That's simple enough, but not really useful. Things get interesting when you're
words.grep(/interesting/).
map(&:downcase).
group_by(&:length).
values_at(5, 10)
values_at(5, 10).
slice(0..2).
join(", ")
```
Expand All @@ -43,7 +43,7 @@ If I want to know the state of your code after lines 3 and 5, all I have to do i
words.grep(/interesting/).
map(&:downcase).
group_by(&:length).p.
values_at(5, 10)
values_at(5, 10).
slice(0..2).p.
join(", ")
```
Expand Down

0 comments on commit bf231cf

Please sign in to comment.