Skip to content

Commit

Permalink
Removed non-ascii characters from comments
Browse files Browse the repository at this point in the history
- Closes rspec#315.
  • Loading branch information
Geoffrey Byers authored and dchelimsky committed Feb 21, 2011
1 parent 1a09d44 commit 4f0a131
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rspec/core/subject.rb
Expand Up @@ -108,14 +108,14 @@ module ClassMethods
#
# describe "a configuration Hash" do
# subject do
# { :max_users => 3,
# { :max_users => 3,
# 'admin' => :all_permissions }
# end
#
# its([:max_users]) { should == 3 }
# its(['admin']) { should == :all_permissions }
#
# # You can still access to its regular methods this way:
# # You can still access to its regular methods this way:
# its(:keys) { should include(:max_users) }
# its(:count) { should == 2 }
# end
Expand Down

0 comments on commit 4f0a131

Please sign in to comment.