From dc4874826a134328144aff5c30c52e9995f39037 Mon Sep 17 00:00:00 2001 From: Javier Valencia Date: Wed, 3 Dec 2025 06:52:05 +0100 Subject: [PATCH] change the object type in the example code (#1824) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit changing the example code, which says it’s a `module` but actually shows a `class`. --- STYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STYLE.md b/STYLE.md index b31f49cab..941e855f9 100644 --- a/STYLE.md +++ b/STYLE.md @@ -126,7 +126,7 @@ end If a module only has private methods, we mark it `private` at the top and add an extra new line after but don't indent. ```ruby -class SomeModule +module SomeModule private def some_private_method