@@ -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
0 commit comments