Add missing JSON attribute documentation

Documentation is missing for several JSON attributes.  Add it.

Also fix a minor typo in Patch.java comments, where some of the
added documentation is copy/pasted from.

Change-Id: I1bb33384a668ebc5c4b778773a59ba1291100660
This commit is contained in:
David Pursehouse
2012-10-10 11:40:49 +09:00
parent cafe3765c8
commit 6002bb279b
2 changed files with 85 additions and 5 deletions

View File

@@ -84,7 +84,7 @@ public final class Patch {
/** Path was copied from {@link Patch#getSourceFileName()}. */
COPIED('C'),
/** Sufficient amount of content changed to claim the file was written. */
/** Sufficient amount of content changed to claim the file was rewritten. */
REWRITE('W');
private final char code;