diff options
author | n-aleha <nick_aleha@myway.com> | 2014-05-19 05:50:29 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-08-03 06:57:05 +0300 |
commit | 8ac8c9ec616d8a53cdf02459ae08b2b44e7fd4cb (patch) | |
tree | 7e8b79f7e130fe5f60ae10e2f737ac7c7038caca /phpBB/includes/diff | |
parent | 19b9df7e630031e3bdf0640a91f7025da3a00257 (diff) | |
download | forums-8ac8c9ec616d8a53cdf02459ae08b2b44e7fd4cb.tar forums-8ac8c9ec616d8a53cdf02459ae08b2b44e7fd4cb.tar.gz forums-8ac8c9ec616d8a53cdf02459ae08b2b44e7fd4cb.tar.bz2 forums-8ac8c9ec616d8a53cdf02459ae08b2b44e7fd4cb.tar.xz forums-8ac8c9ec616d8a53cdf02459ae08b2b44e7fd4cb.zip |
[ticket/12557] Fix doc block errors found by Sami
More corrections.
PHPBB3-12557
Diffstat (limited to 'phpBB/includes/diff')
-rw-r--r-- | phpBB/includes/diff/diff.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/diff/diff.php b/phpBB/includes/diff/diff.php index d4bd60c988..17fa726352 100644 --- a/phpBB/includes/diff/diff.php +++ b/phpBB/includes/diff/diff.php @@ -46,8 +46,8 @@ class diff /** * Computes diffs between sequences of strings. * - * @param array $from_lines An array of strings. Typically these are lines from a file. - * @param array $to_lines An array of strings. + * @param array $from_content An array of strings. Typically these are lines from a file. + * @param array $to_content An array of strings. * @param bool $preserve_cr If true, \r is replaced by a new line in the diff output */ function diff(&$from_content, &$to_content, $preserve_cr = true) |