From d74f8d6dd941b507aa714679d0a2106c7ec657fb Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 28 Apr 2016 17:55:15 -0700 Subject: [PATCH] Fix spacing on the msg in Configuration#renamed_key --- lib/jekyll/configuration.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jekyll/configuration.rb b/lib/jekyll/configuration.rb index 735b2c67..87bfeb46 100644 --- a/lib/jekyll/configuration.rb +++ b/lib/jekyll/configuration.rb @@ -286,8 +286,8 @@ module Jekyll def renamed_key(old, new, config, _ = nil) if config.key?(old) Jekyll::Deprecator.deprecation_message "The '#{old}' configuration" \ - "option has been renamed to '#{new}'. Please update your config " \ - "file accordingly." + " option has been renamed to '#{new}'. Please update your config" \ + " file accordingly." config[new] = config.delete(old) end end