[skip ci] Standardized punctuation.

This commit is contained in:
ch33hau 2014-02-25 11:04:08 +08:00 committed by Chee Hau
parent 82158ae4ed
commit ac85125164
1 changed files with 3 additions and 3 deletions

View File

@ -92,12 +92,12 @@ Run `rake` to run the test. This test should fail because we haven't implemented
Great - now you are ready to start development.
In `lib/yaffle.rb`, add `require "yaffle/core_ext"`:
In `lib/yaffle.rb`, add `require 'yaffle/core_ext'`:
```ruby
# yaffle/lib/yaffle.rb
require "yaffle/core_ext"
require 'yaffle/core_ext'
module Yaffle
end
@ -149,7 +149,7 @@ end
```ruby
# yaffle/lib/yaffle.rb
require "yaffle/core_ext"
require 'yaffle/core_ext'
require 'yaffle/acts_as_yaffle'
module Yaffle