aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.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/getting_started.md
parent2fb658d1e39364926aebd09f264d395bd1863e56 (diff)
downloadrails-e9f71e2451c5be81941ede6c134290999969513e.tar.gz
rails-e9f71e2451c5be81941ede6c134290999969513e.tar.bz2
rails-e9f71e2451c5be81941ede6c134290999969513e.zip
missing backquotes [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 385b99ea6b..11c7ef9125 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -178,7 +178,7 @@ of the files and folders that Rails created by default:
|lib/|Extended modules for your application.|
|log/|Application log files.|
|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).|