Fix spacing on the msg in Configuration#renamed_key
This commit is contained in:
parent
6ed193277d
commit
d74f8d6dd9
|
@ -286,8 +286,8 @@ module Jekyll
|
||||||
def renamed_key(old, new, config, _ = nil)
|
def renamed_key(old, new, config, _ = nil)
|
||||||
if config.key?(old)
|
if config.key?(old)
|
||||||
Jekyll::Deprecator.deprecation_message "The '#{old}' configuration" \
|
Jekyll::Deprecator.deprecation_message "The '#{old}' configuration" \
|
||||||
"option has been renamed to '#{new}'. Please update your config " \
|
" option has been renamed to '#{new}'. Please update your config" \
|
||||||
"file accordingly."
|
" file accordingly."
|
||||||
config[new] = config.delete(old)
|
config[new] = config.delete(old)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue