Skip to content

Commit 57fb45b

Browse files
Fix docs
1 parent 94546b5 commit 57fb45b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

temporal-sdk/src/main/java/io/temporal/workflow/MutableSideEffectOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ private Builder(MutableSideEffectOptions options) {
3737
}
3838

3939
/**
40-
* Single-line fixed summary for this timer that will appear in UI/CLI. This can be in
41-
* single-line Temporal Markdown format.
40+
* Single-line fixed summary for this mutable side effect that will appear in UI/CLI. This can
41+
* be in single-line Temporal Markdown format.
4242
*
4343
* <p>Default is none/empty.
4444
*/
@@ -69,7 +69,7 @@ public MutableSideEffectOptions.Builder toBuilder() {
6969

7070
@Override
7171
public String toString() {
72-
return "TimerOptions{" + "summary='" + summary + '\'' + '}';
72+
return "MutableSideEffectOptions{" + "summary='" + summary + '\'' + '}';
7373
}
7474

7575
@Override

temporal-sdk/src/main/java/io/temporal/workflow/SideEffectOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private Builder(SideEffectOptions options) {
3737
}
3838

3939
/**
40-
* Single-line fixed summary for this timer that will appear in UI/CLI. This can be in
40+
* Single-line fixed summary for this side effect that will appear in UI/CLI. This can be in
4141
* single-line Temporal Markdown format.
4242
*
4343
* <p>Default is none/empty.
@@ -69,7 +69,7 @@ public SideEffectOptions.Builder toBuilder() {
6969

7070
@Override
7171
public String toString() {
72-
return "TimerOptions{" + "summary='" + summary + '\'' + '}';
72+
return "SideEffectOptions{" + "summary='" + summary + '\'' + '}';
7373
}
7474

7575
@Override

0 commit comments

Comments
 (0)