From 0df890569c548c2bbe9c6c7d05c750d1f260f793 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Thu, 25 May 2023 12:43:32 -0700 Subject: [PATCH] Fix typo in patcher Succesfully -> Successfully --- lib/rubygems/patcher.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rubygems/patcher.rb b/lib/rubygems/patcher.rb index 41f3ff6..55297ce 100644 --- a/lib/rubygems/patcher.rb +++ b/lib/rubygems/patcher.rb @@ -77,7 +77,7 @@ def apply_patch(patch, options) unless $?.nil? if $?.exitstatus == 0 - @output << "Succesfully patched with #{patch}" + @output << "Successfully patched with #{patch}" else @output << "Error: Unable to patch with #{patch}."