Skip to content

Commit aa7b672

Browse files
committed
Fix javadoc lint errors
1 parent fcc8030 commit aa7b672

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/main/java/org/apposed/appose/builder/Mamba.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ private ProcessBuilder getBuilder( final boolean isInheritIO )
213213
* Create a new {@link Mamba} object. The root dir for the Micromamba installation
214214
* will be the default base path defined at {@link #BASE_PATH}
215215
* If there is no Micromamba found at the base path {@link #BASE_PATH}, an {@link IllegalStateException} will be thrown
216-
* <p></p>
216+
* <p>
217217
* It is expected that the Micromamba installation has executable commands as shown below:
218218
* </p>
219219
* <pre>

src/main/java/org/apposed/appose/builder/PixiBuilder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public PixiBuilder(String source, String scheme) throws IOException {
7070
/**
7171
* Adds conda packages to the environment.
7272
*
73-
* @param packages Conda package specifications (e.g., "numpy", "python>=3.8")
73+
* @param packages Conda package specifications (e.g.: {@code "numpy", "python>=3.8"})
7474
* @return This builder instance, for fluent-style programming.
7575
*/
7676
public PixiBuilder conda(String... packages) {
@@ -81,7 +81,7 @@ public PixiBuilder conda(String... packages) {
8181
/**
8282
* Adds PyPI packages to the environment.
8383
*
84-
* @param packages PyPI package specifications (e.g., "matplotlib", "requests==2.28.0")
84+
* @param packages PyPI package specifications (e.g.: {@code "matplotlib", "requests==2.28.0"})
8585
* @return This builder instance, for fluent-style programming.
8686
*/
8787
public PixiBuilder pypi(String... packages) {
@@ -239,7 +239,7 @@ public Environment wrap(File envDir) throws IOException {
239239
/**
240240
* Adds conda channels to search for packages.
241241
*
242-
* @param channels Channel names (e.g., "conda-forge", "bioconda")
242+
* @param channels Channel names (e.g.: {@code "conda-forge", "bioconda"})
243243
* @return This builder instance, for fluent-style programming.
244244
*/
245245
@Override

src/main/java/org/apposed/appose/builder/SimpleBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ public SimpleBuilder appendSystemPath() {
9494
* environment variable, ensuring worker processes use the same JVM version.
9595
* <p>
9696
* This is a convenience method equivalent to:
97+
* </p>
9798
* <pre>
9899
* binPaths(new File(System.getProperty("java.home"), "bin").getPath())
99100
* .env("JAVA_HOME", System.getProperty("java.home"))
100101
* </pre>
101-
* </p>
102102
*
103103
* @return This builder instance, for fluent-style programming.
104104
*/

0 commit comments

Comments
 (0)