aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/plugins.md
diff options
context:
space:
mode:
authorYauheni Dakuka <yauheni.dakuka@gmail.com>2017-08-22 08:40:56 +0300
committerYauheni Dakuka <yauheni.dakuka@gmail.com>2017-08-22 08:51:39 +0300
commite9f71e2451c5be81941ede6c134290999969513e (patch)
tree00d18c794173bdc1bd6028ac56be7350adedfab0 /guides/source/plugins.md
parent2fb658d1e39364926aebd09f264d395bd1863e56 (diff)
downloadrails-e9f71e2451c5be81941ede6c134290999969513e.tar.gz
rails-e9f71e2451c5be81941ede6c134290999969513e.tar.bz2
rails-e9f71e2451c5be81941ede6c134290999969513e.zip
missing backquotes [ci skip]
Diffstat (limited to 'guides/source/plugins.md')
-rw-r--r--guides/source/plugins.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/plugins.md b/guides/source/plugins.md
index 164207a9f9..0f0cde7634 100644
--- a/guides/source/plugins.md
+++ b/guides/source/plugins.md
@@ -135,7 +135,7 @@ To test that your method does what it says it does, run the unit tests with `bin
2 runs, 2 assertions, 0 failures, 0 errors, 0 skips
```
-To see this in action, change to the test/dummy directory, fire up a console and start squawking:
+To see this in action, change to the `test/dummy` directory, fire up a console and start squawking:
```bash
$ bin/rails console
@@ -439,7 +439,7 @@ send("#{self.class.yaffle_text_field}=", string.to_squawk)
Generators
----------
-Generators can be included in your gem simply by creating them in a lib/generators directory of your plugin. More information about
+Generators can be included in your gem simply by creating them in a `lib/generators` directory of your plugin. More information about
the creation of generators can be found in the [Generators Guide](generators.html).
Publishing Your Gem