Fix spacing on the msg in Configuration#renamed_key

This commit is contained in:
Parker Moore 2016-04-28 17:55:15 -07:00
parent 6ed193277d
commit d74f8d6dd9
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 2 additions and 2 deletions

View File

@ -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