Merge "ChangeApi: Update javadoc for get() and info()"
diff --git a/java/com/google/gerrit/extensions/api/changes/ChangeApi.java b/java/com/google/gerrit/extensions/api/changes/ChangeApi.java
index 8b2d29b..0150e1e 100644
--- a/java/com/google/gerrit/extensions/api/changes/ChangeApi.java
+++ b/java/com/google/gerrit/extensions/api/changes/ChangeApi.java
@@ -190,9 +190,17 @@
     return get(Arrays.asList(options));
   }
 
-  /** {@code get} with {@link ListChangesOption} set to all except CHECK. */
+  /**
+   * {@link #get(ListChangesOption...)} with all options included, except for the following.
+   *
+   * <ul>
+   *   <li>{@code CHECK} is omitted, to skip consistency checks.
+   *   <li>{@code SKIP_MERGEABLE} is omitted, so the {@code mergeable} bit <em>is</em> set.
+   * </ul>
+   */
   ChangeInfo get() throws RestApiException;
-  /** {@code get} with {@link ListChangesOption} set to none. */
+
+  /** {@link #get(ListChangesOption...)} with no options included. */
   ChangeInfo info() throws RestApiException;
 
   /**