Skip to content

Commit

Permalink
Fix constructor DocBlocks
Browse files Browse the repository at this point in the history
DocBlocks referred to Inline class instead of class in question.
  • Loading branch information
DigiLive committed Nov 21, 2020
1 parent 07da484 commit b13ff84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/jblond/Diff/Renderer/Html/SideBySide.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ class SideBySide extends MainRenderer implements SubRendererInterface
/**
* SideBySide constructor.
*
* @param array $options Custom defined options for the inline diff renderer.
* @param array $options Custom defined options for the SideBySide diff renderer.
*
* @see Inline::$subOptions
* @see SideBySide::$subOptions
*/
public function __construct(array $options = [])
{
Expand Down
4 changes: 2 additions & 2 deletions lib/jblond/Diff/Renderer/Text/InlineCli.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class InlineCli extends MainRenderer implements SubRendererInterface
/**
* InlineCli constructor.
*
* @param array $options Custom defined options for the inline diff renderer.
* @param array $options Custom defined options for the InlineCli diff renderer.
*
* @see Inline::$subOptions
* @see InlineCli::$subOptions
*/
public function __construct(array $options = [])
{
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Text/UnifiedCli.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class UnifiedCli extends MainRendererAbstract
/**
* UnifiedCli constructor.
*
* @param array $options Custom defined options for the inline diff renderer.
* @param array $options Custom defined options for the UnifiedCli diff renderer.
*
*/
public function __construct(array $options = [])
Expand Down

0 comments on commit b13ff84

Please sign in to comment.