diff --git a/releaser-core/src/main/java/releaser/internal/ReleaserProperties.java b/releaser-core/src/main/java/releaser/internal/ReleaserProperties.java index 8c0fa01c..3cce5625 100644 --- a/releaser-core/src/main/java/releaser/internal/ReleaserProperties.java +++ b/releaser-core/src/main/java/releaser/internal/ReleaserProperties.java @@ -253,9 +253,9 @@ public class ReleaserProperties implements Serializable { String getPublishDocsCommand(); /** - * @param publishDocsCommands to set + * @param publishDocsCommand to set */ - void setPublishDocsCommand(String publishDocsCommands); + void setPublishDocsCommand(String publishDocsCommand); /** * @return generate release train docs command @@ -1189,7 +1189,7 @@ public class ReleaserProperties implements Serializable { public String toString() { return "Bash{" + "buildCommand='" + this.buildCommand + '\'' + ", deployCommand='" + this.deployCommand + '\'' - + ", publishDocsCommands=" + this.publishDocsCommand + + ", publishDocsCommand=" + this.publishDocsCommand + "generateReleaseTrainDocsCommand='" + this.generateReleaseTrainDocsCommand + '\'' + ", waitTimeInMinutes=" + this.waitTimeInMinutes + '}'; @@ -1365,7 +1365,7 @@ public class ReleaserProperties implements Serializable { .add("buildCommand='" + buildCommand + "'") .add("deployCommand='" + deployCommand + "'") .add("deployGuidesCommand='" + deployGuidesCommand + "'") - .add("publishDocsCommands=" + publishDocsCommand) + .add("publishDocsCommand=" + publishDocsCommand) .add("generateReleaseTrainDocsCommand='" + generateReleaseTrainDocsCommand + "'") .add("systemProperties='" + systemProperties + "'")