Skip to content

Commit 95fb789

Browse files
author
Adam Mackler
committed
Fix inconsistency in javadoc for WorkflowInterface (#2232)
1 parent 7525c65 commit 95fb789

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
* String d();
8585
* }
8686
*
87-
* public class CImpl implements C {
87+
* public class DImpl implements D {
8888
* public void a() {}
8989
* public void aa() {}
9090
* public void b() {}
@@ -93,7 +93,7 @@
9393
* }
9494
* </code></pre>
9595
*
96-
* When <code>CImpl</code> instance is registered with the {@link io.temporal.worker.Worker} the
96+
* When <code>DImpl</code> instance is registered with the {@link io.temporal.worker.Worker} the
9797
* following is registered:
9898
*
9999
* <p>
@@ -107,7 +107,7 @@
107107
* </ul>
108108
*
109109
* The client code can call signals through stubs to <code>B</code>, <code>C</code> and <code>D
110-
* </code> interfaces. A call to crate a stub to <code>A</code> interface will fail as <code>A
110+
* </code> interfaces. A call to create a stub to <code>A</code> interface will fail as <code>A
111111
* </code> is not annotated with the WorkflowInterface.
112112
*/
113113
@Retention(RetentionPolicy.RUNTIME)

0 commit comments

Comments
 (0)