Skip to content

Commit

Permalink
Merge pull request #5 from jmazzi/patch-1
Browse files Browse the repository at this point in the history
Fix a syntax error in the README. Replace =. with =>
  • Loading branch information
jnunemaker committed Sep 7, 2011
2 parents c6f29e8 + 4e15727 commit 8dd4f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rdoc
Expand Up @@ -43,7 +43,7 @@ Lets say an article can be viewed and created by anyone, but only updated or des
Lets look at some sample code now:

john = User.create(:name => 'John')
steve = User.create(:name =. 'Steve')
steve = User.create(:name => 'Steve')

ruby = Article.new(:title => 'Ruby')
john.can_create?(ruby) # true
Expand Down

0 comments on commit 8dd4f01

Please sign in to comment.