From 8859978b43eeb24f53c73afd9c8e57cdbd5a1d5c Mon Sep 17 00:00:00 2001 From: Kevin Jalbert Date: Sat, 19 Dec 2020 14:18:04 -0500 Subject: [PATCH] Fix RDoc code formatting for Railtie [ci skip] Fixes an indention issue which results in ill-formatted RDoc code rendering. --- railties/lib/rails/railtie.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/railties/lib/rails/railtie.rb b/railties/lib/rails/railtie.rb index 24b8220631..68c841990f 100644 --- a/railties/lib/rails/railtie.rb +++ b/railties/lib/rails/railtie.rb @@ -120,11 +120,11 @@ module Rails # this less confusing for everyone. # It can be used like this: # - # class MyRailtie < Rails::Railtie - # server do - # WebpackServer.start + # class MyRailtie < Rails::Railtie + # server do + # WebpackServer.start + # end # end - # end # # == Application and Engine #