Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix inconsistency in javadoc for WorkflowInterface (#2232) #2233

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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() {}
Expand All @@ -93,7 +93,7 @@
* }
* </code></pre>
*
* When <code>CImpl</code> instance is registered with the {@link io.temporal.worker.Worker} the
* When <code>DImpl</code> instance is registered with the {@link io.temporal.worker.Worker} the
* following is registered:
*
* <p>
Expand All @@ -107,7 +107,7 @@
* </ul>
*
* The client code can call signals through stubs to <code>B</code>, <code>C</code> and <code>D
* </code> interfaces. A call to crate a stub to <code>A</code> interface will fail as <code>A
* </code> interfaces. A call to create a stub to <code>A</code> interface will fail as <code>A
* </code> is not annotated with the WorkflowInterface.
*/
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Loading