Skip to content

Commit d526296

Browse files
committed
Merge pull request #4 from AnhNhan/fix_superfluous_closingtags
Removing superfluous closing spans
2 parents 445c563 + cce18c8 commit d526296

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Diff/Renderer/Html/SideBySide.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ public function render()
8383
$toLine = $change['changed']['offset'] + $no + 1;
8484
$html .= '<tr>';
8585
$html .= '<th>'.$fromLine.'</th>';
86-
$html .= '<td class="Left"><span>'.$line.'</span>&nbsp;</span></td>';
86+
$html .= '<td class="Left"><span>'.$line.'</span>&nbsp;</td>';
8787
$html .= '<th>'.$toLine.'</th>';
88-
$html .= '<td class="Right"><span>'.$line.'</span>&nbsp;</span></td>';
88+
$html .= '<td class="Right"><span>'.$line.'</span>&nbsp;</td>';
8989
$html .= '</tr>';
9090
}
9191
}

0 commit comments

Comments
 (0)