Skip to content

Commit

Permalink
[#1596] DOC: fix javadoc typos and incorrect links.
Browse files Browse the repository at this point in the history
Closes #1596
  • Loading branch information
remkop committed Feb 23, 2022
1 parent 38e642e commit fd758b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Picocli 4.7.0 introduced a `sortSynopsis = false` attribute to let the synopsis
* [#1572] Enhancement: Remove redundant braces in ArgGroup synopsis.
* [#1575] Bugfix: Synopsis should not cluster boolean options if `posixClusteredShortOptionsAllowed` is set to false.
* [#812] DOC: Document how to test a picocli spring-boot application.
* [#1596] DOC: fix javadoc typos and incorrect links.
* [#1597] DOC: Add examples to Execution Configuration section in user manual.
* [#1581] BUILD: Fix dependabot config.
* [#1573] DEP: Bump JLine3 version to 3.21.0 from 3.19.0.
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -17497,7 +17497,7 @@ public Builder(ColorScheme existing) {
}
/** Returns the {@code Ansi} setting of this color scheme builder. */
public Ansi ansi() { return ansi; }
/** Returns the {@code Ansi} setting of this color scheme builder. */
/** Set the {@code Ansi} setting of this color scheme builder. */
public ColorScheme.Builder ansi(Ansi ansi) { this.ansi = Assert.notNull(ansi, "ansi"); return this; }
/** Returns the registered styles for commands in this color scheme builder. */
public List<IStyle> commandStyles() { return commandStyles; }
Expand Down Expand Up @@ -17797,7 +17797,7 @@ public static IStyle bg(String str) {
}
/** Parses the specified comma-separated sequence of style descriptors and returns the associated
* styles. For each markup, strings starting with {@code "bg("} are delegated to
* {@link #bg(String)}, others are delegated to {@link #bg(String)}.
* {@link #bg(String)}, others are delegated to {@link #fg(String)}.
* @param commaSeparatedCodes one or more descriptors, e.g. {@code "bg(blue),underline,red"}
* @return an array with all styles for the specified descriptors
*/
Expand Down

0 comments on commit fd758b1

Please sign in to comment.