ObjectChecker#getGitsubmodules: Fix malformed javadoc

The text "<tree, blob>" with angle brackets should not be used in javadoc
since it is interpreted as an HTML tag and then rejected since it's not a
valid HTML tag. Wrap the text in a @literal tag.

Also add a missing space.

Change-Id: Ide045e8c04a39a916f5b2e964e58c151e4555830
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2018-10-06 17:51:28 +09:00
parent 4a68f1a3c7
commit df8bd762a1
1 changed files with 2 additions and 2 deletions

View File

@ -1209,11 +1209,11 @@ private String normalize(byte[] raw, int ptr, int end) {
}
/**
* Get the list of".gitmodules" files found in the pack. For each, report
* Get the list of ".gitmodules" files found in the pack. For each, report
* its blob id (e.g. to validate its contents) and the tree where it was
* found (e.g. to check if it is in the root)
*
* @return List of pairs of ids <tree, blob>
* @return List of pairs of ids {@literal <tree, blob>}.
*
* @since 4.7.5
*/