Skip to content

Commit b13ff84

Browse files
committed
Fix constructor DocBlocks
DocBlocks referred to Inline class instead of class in question.
1 parent 07da484 commit b13ff84

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/jblond/Diff/Renderer/Html/SideBySide.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ class SideBySide extends MainRenderer implements SubRendererInterface
4343
/**
4444
* SideBySide constructor.
4545
*
46-
* @param array $options Custom defined options for the inline diff renderer.
46+
* @param array $options Custom defined options for the SideBySide diff renderer.
4747
*
48-
* @see Inline::$subOptions
48+
* @see SideBySide::$subOptions
4949
*/
5050
public function __construct(array $options = [])
5151
{

lib/jblond/Diff/Renderer/Text/InlineCli.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ class InlineCli extends MainRenderer implements SubRendererInterface
3131
/**
3232
* InlineCli constructor.
3333
*
34-
* @param array $options Custom defined options for the inline diff renderer.
34+
* @param array $options Custom defined options for the InlineCli diff renderer.
3535
*
36-
* @see Inline::$subOptions
36+
* @see InlineCli::$subOptions
3737
*/
3838
public function __construct(array $options = [])
3939
{

lib/jblond/Diff/Renderer/Text/UnifiedCli.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class UnifiedCli extends MainRendererAbstract
3535
/**
3636
* UnifiedCli constructor.
3737
*
38-
* @param array $options Custom defined options for the inline diff renderer.
38+
* @param array $options Custom defined options for the UnifiedCli diff renderer.
3939
*
4040
*/
4141
public function __construct(array $options = [])

0 commit comments

Comments
 (0)