Kill unnecessary return keyword.
This commit is contained in:
parent
2b9b613687
commit
b46000f6af
|
@ -15,7 +15,7 @@ module Jekyll
|
||||||
|
|
||||||
# Get the full path to the directory containing the draft files
|
# Get the full path to the directory containing the draft files
|
||||||
def containing_dir(source, dir)
|
def containing_dir(source, dir)
|
||||||
return File.join(source, dir, '_drafts')
|
File.join(source, dir, '_drafts')
|
||||||
end
|
end
|
||||||
|
|
||||||
# Extract information from the post filename.
|
# Extract information from the post filename.
|
||||||
|
|
Loading…
Reference in New Issue