diff --git a/temporal-sdk/src/main/java/io/temporal/workflow/WorkflowInterface.java b/temporal-sdk/src/main/java/io/temporal/workflow/WorkflowInterface.java index 87523392f..09810ba8d 100644 --- a/temporal-sdk/src/main/java/io/temporal/workflow/WorkflowInterface.java +++ b/temporal-sdk/src/main/java/io/temporal/workflow/WorkflowInterface.java @@ -84,7 +84,7 @@ * String d(); * } * - * public class CImpl implements C { + * public class DImpl implements D { * public void a() {} * public void aa() {} * public void b() {} @@ -93,7 +93,7 @@ * } * * - * When CImpl instance is registered with the {@link io.temporal.worker.Worker} the + * When DImpl instance is registered with the {@link io.temporal.worker.Worker} the * following is registered: * *

@@ -107,7 +107,7 @@ * * * The client code can call signals through stubs to B, C and D - * interfaces. A call to crate a stub to A interface will fail as A + * interfaces. A call to create a stub to A interface will fail as A * is not annotated with the WorkflowInterface. */ @Retention(RetentionPolicy.RUNTIME)