Skip to content

Commit e9edab3

Browse files
committed
Merge pull request #25 from pvdb/minor_docu_updates
Minor changes to documentation & examples
2 parents b5b84e4 + 53b265e commit e9edab3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ that `ar` selects _all_ of a ruby block, and `ir` selects the _inner_ portion
2525
of a rubyblock.
2626

2727
In ruby, a block is always closed with the `end` keyword. Ruby blocks may be
28-
opened using one of several keywords, including `module`, `class`, `def` `if`
29-
and `do`. This example demonstrates a few of these:
28+
opened using one of several keywords, including `module`, `class`, `def`, `if`,
29+
`unless` and `do`. This example demonstrates a few of these:
3030

3131
module Foo
3232
class Bar
33-
def Baz
33+
def baz
3434
[1,2,3].each do |i|
3535
i + 1
3636
end
@@ -42,7 +42,7 @@ Suppose your cursor was positioned on the word `def`. Typing `var` would
4242
enable visual mode selecting _all_ of the method definition. Your selection
4343
would comprise the following lines:
4444

45-
def Baz
45+
def baz
4646
[1,2,3].each do |i|
4747
i + 1
4848
end

0 commit comments

Comments
 (0)