aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorYauheni Dakuka <yauheni.dakuka@gmail.com>2017-10-06 09:02:56 +0300
committerYauheni Dakuka <yauheni.dakuka@gmail.com>2017-10-06 09:02:56 +0300
commitde2afdc457d63ee628b5cac4e7bb73812e016e38 (patch)
tree2e599f1216258bf12027a3ead67d11e031edb6c8 /guides/source/getting_started.md
parent883d83bf727b23d9c9d10a3366441468d1273b02 (diff)
downloadrails-de2afdc457d63ee628b5cac4e7bb73812e016e38.tar.gz
rails-de2afdc457d63ee628b5cac4e7bb73812e016e38.tar.bz2
rails-de2afdc457d63ee628b5cac4e7bb73812e016e38.zip
Cosmetic fixes [ci skip]
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).|