Skip to content

Commit

Permalink
#33: Documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jaccomoc committed Nov 11, 2023
1 parent 1541c84 commit aad3416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/integration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ For global functions that are asynchronous, the `Continuation` parameter of the
For methods that perform asynchronous operations, the `Continuation` parameters must be the second parameter after the
parameter that represents the object on which the method is being invoked:
```java
public static Object someAsyncFunction(Continiuation c, Object param1, String param2) {
public static Object someAsyncFunction(Continuation c, Object param1, String param2) {
...
}

Expand All @@ -824,7 +824,7 @@ the usual signature for an asynchronous function will have the `Continuation` pa
parameter for the source code, and the `int` parameter for the offset into the source where the invocation is taking
place so the example above would more likely look like this:
```java
public static Object someAsyncFunction(Continiuation c, String source, int offset, Object param1, String param2) {
public static Object someAsyncFunction(Continuation c, String source, int offset, Object param1, String param2) {
...
}

Expand Down

0 comments on commit aad3416

Please sign in to comment.