From 7d26b6ede2b5d52ab46e6e0832e06ea09af2129b Mon Sep 17 00:00:00 2001 From: Raghav Sood Date: Fri, 26 Jan 2024 17:14:45 +0800 Subject: [PATCH] rails setup: add missing newline from markdown A missing newline causes the instructions for two different parts to merge, adding it back make things clearer. --- source/guides/rails.html.md | 1 + 1 file changed, 1 insertion(+) diff --git a/source/guides/rails.html.md b/source/guides/rails.html.md index 5910ff6606..501f7110dc 100644 --- a/source/guides/rails.html.md +++ b/source/guides/rails.html.md @@ -16,6 +16,7 @@ $ gem install rails We recommend using rvm for dependable Ruby installations, especially if you are switching between different versions of Ruby + Generate a Rails app as usual ~~~