gnodet commented on code in PR #2126: URL: https://github.com/apache/maven/pull/2126#discussion_r1978102841
########## compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java: ########## @@ -36,25 +36,25 @@ * <p> * Features: * <ul> - * <li>mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li> - * <li>transition between characters and digits also constitutes a separator: + * <li>Mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li> + * <li>Transition between characters and digits also constitutes a separator: * <code>1.0alpha1 => [1, [alpha, 1]]</code></li> - * <li>unlimited number of version components,</li> - * <li>version components in the text can be digits or strings,</li> - * <li>strings are checked for well-known qualifiers and the qualifier ordering is used for version ordering. + * <li>Unlimited number of version components,</li> + * <li>Version components in the text can be digits or strings,</li> + * <li>Strings are checked for well-known qualifiers, and the qualifier ordering is used for version ordering. * Well-known qualifiers (case-insensitive) are:<ul> * <li><code>alpha</code> or <code>a</code></li> * <li><code>beta</code> or <code>b</code></li> * <li><code>milestone</code> or <code>m</code></li> * <li><code>rc</code> or <code>cr</code></li> * <li><code>snapshot</code></li> - * <li><code>(the empty string)</code> or <code>ga</code> or <code>final</code></li> + * <li><code>ga</code> or <code>final</code></li> Review Comment: This indicates that when sorting, no qualifier will be sorted at the same level than `ga` or `final`. I would not remove this bit. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org