Skip to content

Commit 1fd7935

Browse files
committed
Update option comments
Signed-off-by: Jack Cherng <jfcherng@gmail.com>
1 parent 992ab72 commit 1fd7935

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ $templateOptions = [
6666
// template language: eng, cht, chs, jpn, ...
6767
// or an array which has the same keys with a language file
6868
'language' => 'eng',
69-
// show "..." row in HTML templates
69+
// show a separator between different diff hunks in HTML templates
7070
'separateBlock' => true,
7171
// the frontend HTML could use CSS "white-space: pre;" to visualize consecutive whitespaces
7272
// but if you want to visualize them in the backend with "&nbsp;", you can set this to true

example/demo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// template language: eng, cht, chs, jpn, ...
3434
// or an array which has the same keys with a language file
3535
'language' => 'eng',
36-
// show "..." row in HTML templates
36+
// show a separator between different diff hunks in HTML templates
3737
'separateBlock' => true,
3838
// the frontend HTML could use CSS "white-space: pre;" to visualize consecutive whitespaces
3939
// but if you want to visualize them in the backend with "&nbsp;", you can set this to true

src/Renderer/AbstractRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract class AbstractRenderer implements RendererInterface
5050
'language' => 'eng',
5151
// HTML template tab width (negative = do not convert into spaces)
5252
'tabSize' => 4,
53-
// show "..." row in HTML templates
53+
// show a separator between different diff hunks in HTML templates
5454
'separateBlock' => true,
5555
// the frontend HTML could use CSS "white-space: pre;" to visualize consecutive whitespaces
5656
// but if you want to visualize them in the backend with "&nbsp;", you can set this to true

0 commit comments

Comments
 (0)