Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Jan 8, 2014
1 parent 39632b8 commit 5102fae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -30,11 +30,11 @@ class User
attr_accessor :name, :age

def initialize(name, age)
@name, @age = name age
@name, @age = name, age
end
end

user = User.new('Ford Perfect', 42)
user = User.new('Ford Prefect', 42)
html = Template['user_template'].render(user)
puts html
# => <div class="row">...</div>
Expand Down

0 comments on commit 5102fae

Please sign in to comment.