From 79992fc3c86fefe1ca08b01152ac52c9c7915882 Mon Sep 17 00:00:00 2001 From: Chris Frederick Date: Tue, 26 Aug 2014 17:17:13 +0900 Subject: [PATCH] Fix inaccurate comments --- lib/jekyll/convertible.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/jekyll/convertible.rb b/lib/jekyll/convertible.rb index 2c9e4fc4..72d825fa 100644 --- a/lib/jekyll/convertible.rb +++ b/lib/jekyll/convertible.rb @@ -162,16 +162,14 @@ module Jekyll # Determine whether the file should be rendered with Liquid. # - # Returns false if the document is either an asset file or a yaml file, - # true otherwise. + # Always returns true. def render_with_liquid? true end # Determine whether the file should be placed into layouts. # - # Returns false if the document is either an asset file or a yaml file, - # true otherwise. + # Returns false if the document is an asset file. def place_in_layout? !asset_file? end