We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef480f8 commit e303cf6Copy full SHA for e303cf6
README.md
@@ -13,7 +13,7 @@ as part of long-running processes, or as FaaS (AWS Lambda).
13
// note that there is no failure handling in this example, because the combination of durable execution,
14
// communication, and state storage makes this unnecessary here.
15
const addToCart = async (ctx: restate.RpcContext, cartId: string /* the key */, ticketId: string) => {
16
- // RPC participates in durable execution, so guaranteed to eventually happend and
+ // RPC participates in durable execution, so guaranteed to eventually happen and
17
// will never get duplicated. would suspend if the other takes too long
18
const success = await ctx.rpc<ticketApi>({ path: "tickets" }).reserve(ticketId);
19
0 commit comments