aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2017-10-06 08:45:51 -0400
committerGitHub <noreply@github.com>2017-10-06 08:45:51 -0400
commit6375c9a3ae34cadd0d98e31ae1474fee26cf92ea (patch)
tree2e599f1216258bf12027a3ead67d11e031edb6c8 /guides/source/getting_started.md
parent883d83bf727b23d9c9d10a3366441468d1273b02 (diff)
parentde2afdc457d63ee628b5cac4e7bb73812e016e38 (diff)
downloadrails-6375c9a3ae34cadd0d98e31ae1474fee26cf92ea.tar.gz
rails-6375c9a3ae34cadd0d98e31ae1474fee26cf92ea.tar.bz2
rails-6375c9a3ae34cadd0d98e31ae1474fee26cf92ea.zip
Merge pull request #30816 from ydakuka/cosmetic-fixes
Missing backquotes in the guides
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 8965e74fe2..a1ae515055 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -179,7 +179,7 @@ of the files and folders that Rails created by default:
|log/|Application log files.|
|package.json|This file allows you to specify what npm dependencies are needed for your Rails application. This file is used by Yarn. For more information about Yarn, see the [Yarn website](https://yarnpkg.com/lang/en/).|
|public/|The only folder seen by the world as-is. Contains static files and compiled assets.|
-|Rakefile|This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing Rakefile, you should add your own tasks by adding files to the `lib/tasks` directory of your application.|
+|Rakefile|This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing `Rakefile`, you should add your own tasks by adding files to the `lib/tasks` directory of your application.|
|README.md|This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on.|
|test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).|
|tmp/|Temporary files (like cache and pid files).|