From 9a8e4620db66795721485a891dc17fd0c79d3cab Mon Sep 17 00:00:00 2001 From: Taylor Kearns Date: Wed, 10 Apr 2024 15:44:39 -0400 Subject: [PATCH] Fix typo on code comment re: "organize" method I believe this line is supposed to be calling the `organize` method rather than `organizer`. --- lib/interactor/organizer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/interactor/organizer.rb b/lib/interactor/organizer.rb index fcba5bc..1e2408c 100644 --- a/lib/interactor/organizer.rb +++ b/lib/interactor/organizer.rb @@ -8,7 +8,7 @@ module Interactor # class MyOrganizer # include Interactor::Organizer # - # organizer InteractorOne, InteractorTwo + # organize InteractorOne, InteractorTwo # end module Organizer # Internal: Install Interactor::Organizer's behavior in the given class.