Skip to content

Commit 3e35209

Browse files
authored
Merge pull request #10 from bwillis/fix-bug
Fixes #8
2 parents 33dba49 + 09b72a9 commit 3e35209

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/jekyll_github_sample/code_tag.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def render(context)
2121
if @line_start.respond_to?(:match) and tag_match = @line_start.match(/^tag:(.*)/)
2222
lines = extract_tagged_lines(all_lines, tag_match[1])
2323
else
24-
@line_start, @line_ends = determine_line_numbers(@line_start, @line_end)
24+
@line_start, @line_end = determine_line_numbers(@line_start, @line_end)
2525
lines = all_lines[@line_start..@line_end]
2626
end
2727
lines = remove_common_indentation(lines)

0 commit comments

Comments
 (0)