AndyTechGuy has uploaded a new change for review. https://gerrit.wikimedia.org/r/259954
Change subject: Change multiple documentations in DairkiDiff ...................................................................... Change multiple documentations in DairkiDiff Currently, multiple TODO tags are over different functions and classes in DairkiDiff. Add documentation to five classes and functions in DairkiDiff. Change-Id: I000b615e929736a71aaa4633a291aab94428117f --- M includes/diff/DairikiDiff.php 1 file changed, 14 insertions(+), 5 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/54/259954/1 diff --git a/includes/diff/DairikiDiff.php b/includes/diff/DairikiDiff.php index 7401992..7837f2e 100644 --- a/includes/diff/DairikiDiff.php +++ b/includes/diff/DairikiDiff.php @@ -26,7 +26,8 @@ */ /** - * @todo document + * The base class for all other DiffOp classes. + * * @private * @ingroup DifferenceEngine */ @@ -93,7 +94,9 @@ } /** - * @todo document + * Extends DiffOp. Used to mark strings that have been + * copied from one string string array to the other. + * * @private * @ingroup DifferenceEngine */ @@ -117,7 +120,9 @@ } /** - * @todo document + * Extends DiffOp. Used to mark strings that have been + * deleted from the first string array. + * * @private * @ingroup DifferenceEngine */ @@ -138,7 +143,9 @@ } /** - * @todo document + * Extends DiffOp. Used to mark strings that have been + * added from the first string array. + * * @private * @ingroup DifferenceEngine */ @@ -159,7 +166,9 @@ } /** - * @todo document + * Extends DiffOp. Used to mark strings that have been + * changed from the first string array. (both added and subtracted) + * * @private * @ingroup DifferenceEngine */ -- To view, visit https://gerrit.wikimedia.org/r/259954 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I000b615e929736a71aaa4633a291aab94428117f Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: AndyTechGuy <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
