Kill unnecessary return keyword.

This commit is contained in:
Tom Preston-Werner 2013-03-03 18:43:54 -08:00
parent 2b9b613687
commit b46000f6af
1 changed files with 1 additions and 1 deletions

View File

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