aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorch33hau <ch33hau@gmail.com>2014-02-25 11:04:08 +0800
committerChee Hau <ch33hau@gmail.com>2014-02-25 12:31:19 +0800
commitac85125164c164c20c7f6fb0c3b4b07a854e4b29 (patch)
tree76951b9f38552e6e758a5b2ada5ce83d632dea9a /guides
parent82158ae4ed18ba679f841dca9c963a9fbb89c9ec (diff)
downloadrails-ac85125164c164c20c7f6fb0c3b4b07a854e4b29.tar.gz
rails-ac85125164c164c20c7f6fb0c3b4b07a854e4b29.tar.bz2
rails-ac85125164c164c20c7f6fb0c3b4b07a854e4b29.zip
[skip ci] Standardized punctuation.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/plugins.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/plugins.md b/guides/source/plugins.md
index 720ca5d117..fe4215839f 100644
--- a/guides/source/plugins.md
+++ b/guides/source/plugins.md
@@ -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