From 681c687ad9baeb5eddf7e6b22afdf8dbb936512e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 9 Aug 2022 23:10:50 -0400 Subject: [PATCH] spelling: version Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f3169f15..a126d085 100644 --- a/Rakefile +++ b/Rakefile @@ -43,7 +43,7 @@ def bump_version old_file = File.read("lib/#{name}.rb") old_version_line = old_file[/^\s*VERSION\s*=\s*.*/] new_version = next_version - # replace first match of old vesion with new version + # replace first match of old version with new version old_file.sub!(old_version_line, " VERSION = '#{new_version}'") File.write("lib/#{name}.rb", old_file)