Merge branch 'master' into dont_render_blank_blocks

Conflicts:
	lib/liquid/tag.rb
This commit is contained in:
Florian Weingarten
2013-07-02 14:00:30 -04:00
7 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ module Liquid
when IsTag
if token =~ FullToken
# if we found the proper block delimitor just end parsing here and let the outer block
# if we found the proper block delimiter just end parsing here and let the outer block
# proceed
if block_delimiter == $1
end_tag
@@ -50,8 +50,8 @@ module Liquid
end
end
# Make sure that its ok to end parsing in the current block.
# Effectively this method will throw and exception unless the current block is
# Make sure that it's ok to end parsing in the current block.
# Effectively this method will throw an exception unless the current block is
# of type Document
assert_missing_delimitation!
end