From 1f8831351d96c81df01cf22c3b2b956458c0c765 Mon Sep 17 00:00:00 2001 From: Carlos Palhares Date: Thu, 8 Feb 2024 11:40:44 -0300 Subject: [PATCH] Fix rails guides style --- guides/source/active_storage_overview.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index b8cdda97cc54..473385a5c0ce 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -451,9 +451,9 @@ class User < ApplicationRecord end private - def thumb_size - [100, 100] - end + def thumb_size + [100, 100] + end end ```