Browse Source

ConfigConstants: Fix quoting of section names in javadocs

Replace:

 in the "core section"
 in the "diff section"
 in the "merge section"

with:

 in the "core" section
 in the "diff" section
 in the "merge" section

Change-Id: Ided7bf73e9c8aae4fc4e43d5d5b9f6d7e3066f0a
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
stable-5.4
David Pursehouse 6 years ago committed by Matthias Sohn
parent
commit
18ae69158f
  1. 16
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

16
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

@ -365,50 +365,50 @@ public final class ConfigConstants {
public static final String CONFIG_KEY_CHECKSTAT = "checkstat"; public static final String CONFIG_KEY_CHECKSTAT = "checkstat";
/** /**
* The "renamelimit" key in the "diff section" * The "renamelimit" key in the "diff" section
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_KEY_RENAMELIMIT = "renamelimit"; public static final String CONFIG_KEY_RENAMELIMIT = "renamelimit";
/** /**
* The "trustfolderstat" key in the "core section" * The "trustfolderstat" key in the "core" section
* @since 3.6 * @since 3.6
*/ */
public static final String CONFIG_KEY_TRUSTFOLDERSTAT = "trustfolderstat"; public static final String CONFIG_KEY_TRUSTFOLDERSTAT = "trustfolderstat";
/** /**
* The "supportsAtomicFileCreation" key in the "core section" * The "supportsAtomicFileCreation" key in the "core" section
* *
* @since 4.5 * @since 4.5
*/ */
public static final String CONFIG_KEY_SUPPORTSATOMICFILECREATION = "supportsatomicfilecreation"; public static final String CONFIG_KEY_SUPPORTSATOMICFILECREATION = "supportsatomicfilecreation";
/** /**
* The "noprefix" key in the "diff section" * The "noprefix" key in the "diff" section
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_KEY_NOPREFIX = "noprefix"; public static final String CONFIG_KEY_NOPREFIX = "noprefix";
/** /**
* A "renamelimit" value in the "diff section" * A "renamelimit" value in the "diff" section
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_RENAMELIMIT_COPY = "copy"; public static final String CONFIG_RENAMELIMIT_COPY = "copy";
/** /**
* A "renamelimit" value in the "diff section" * A "renamelimit" value in the "diff" section
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_RENAMELIMIT_COPIES = "copies"; public static final String CONFIG_RENAMELIMIT_COPIES = "copies";
/** /**
* The "renames" key in the "diff section" * The "renames" key in the "diff" section
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_KEY_RENAMES = "renames"; public static final String CONFIG_KEY_RENAMES = "renames";
/** /**
* The "inCoreLimit" key in the "merge section". It's a size limit (bytes) used to * The "inCoreLimit" key in the "merge" section. It's a size limit (bytes) used to
* control a file to be stored in {@code Heap} or {@code LocalFile} during the merge. * control a file to be stored in {@code Heap} or {@code LocalFile} during the merge.
* @since 4.9 * @since 4.9
*/ */

Loading…
Cancel
Save