Skip to content

Commit 308f6b0

Browse files
committed
english and punctuation fix
1 parent f13cd0f commit 308f6b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/workflow/steps/SynchronousResumeNotSupportedException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ public SynchronousResumeNotSupportedException() {
4343

4444
public SynchronousResumeNotSupportedException(String stepDisplayFunctionName) {
4545
super(String.format("""
46-
Step `%s` is a non-blocking synchronous step, it doesn't support resume after a restart. \
46+
Step `%s` is a non-blocking synchronous step; it doesn't support resume after a restart. \
4747
You may wrap it within `retry(conditions: [nonresumable()], count: 2) {...}`, \
48-
or in declarative syntax, use the `retries` option to an `agent` directive) to resume it.""",
48+
or, in declarative syntax, use the `retries` option to an `agent` directive to resume it.""",
4949
stepDisplayFunctionName)
5050
);
5151
}

0 commit comments

Comments
 (0)