Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kind-serge committed Nov 3, 2018
1 parent c85299f commit b8ffbeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Examples/FeatureShowdown/Feature1.StatefulAsyncMethods.cs
Expand Up @@ -55,7 +55,7 @@ public async Task PerformDuties()
Console.WriteLine($"You ordered {order.BeverageName}.");
}

// A sub-routine of the workkflow.
// A sub-routine of the workflow.
protected virtual async Task<Order> TakeOrder()
{
Console.Write("What beverage would you like? ");
Expand Down
Expand Up @@ -65,7 +65,7 @@ public async Task SolveComplaint()
Console.WriteLine("[manager] The visitor complained about a fly in the drink.");

// !!! LOOK HERE !!!
// Calling a rotuine on a distributed service will save the state
// Calling a routine on a distributed service will save the state
// of current routine, because together they define a workflow.

await _baristaWorker.PleaseMakeAnotherCoffee();
Expand All @@ -89,7 +89,7 @@ public async Task PleaseMakeAnotherCoffee()
Console.WriteLine("[barista] But that's a latte art! Fine..");

// !!! LOOK HERE !!!
// Calling a rotuine on a simple dependency will NOT save the state
// Calling a routine on a simple dependency will NOT save the state
// of current routine, because it's not a part of a workflow.

await _coffeeMachine.BrewCoffee();
Expand Down

0 comments on commit b8ffbeb

Please sign in to comment.