diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-02-24 21:50:14 -0500 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-02-24 21:50:14 -0500 |
commit | 9e30869c9af4aa5a76d9c63cd9ac080aa3f1ac39 (patch) | |
tree | 2e98ab8d75c2a935f191842985ef6878dc2f2dbf | |
parent | d81a9d79accb37a52cedc3e4049b50a2fcb7122e (diff) | |
parent | 5bd179787f06848d8b81b86adfdeb9a62fc4a271 (diff) | |
download | rails-9e30869c9af4aa5a76d9c63cd9ac080aa3f1ac39.tar.gz rails-9e30869c9af4aa5a76d9c63cd9ac080aa3f1ac39.tar.bz2 rails-9e30869c9af4aa5a76d9c63cd9ac080aa3f1ac39.zip |
Merge pull request #23863 from delftswa2016/fix-readme-heading
Fix README heading according to Markdown conventions
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/README.md | 2 | ||||
-rw-r--r-- | tools/README.md | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -## Welcome to Rails +# Welcome to Rails Rails is a web-application framework that includes everything needed to create database-backed web applications according to the diff --git a/railties/lib/rails/generators/rails/app/templates/README.md b/railties/lib/rails/generators/rails/app/templates/README.md index 55e144da18..7db80e4ca1 100644 --- a/railties/lib/rails/generators/rails/app/templates/README.md +++ b/railties/lib/rails/generators/rails/app/templates/README.md @@ -1,4 +1,4 @@ -## README +# README This README would normally document whatever steps are necessary to get the application up and running. diff --git a/tools/README.md b/tools/README.md index 1f3d6c59d9..b2e7e4b0ae 100644 --- a/tools/README.md +++ b/tools/README.md @@ -1,8 +1,8 @@ -## Rails dev tools +# Rails dev tools This is a collection of utilities used for Rails internal development. They aren't used by Rails apps directly. * `console` drops you in irb and loads local Rails repos * `profile` profiles `Kernel#require` to help reduce startup time - * `line_statistics` provides CodeTools module and LineStatistics class to count lines
\ No newline at end of file + * `line_statistics` provides CodeTools module and LineStatistics class to count lines |