diff --git a/sdk-dotnet/Examples/WorkerContextExample/README.md b/sdk-dotnet/Examples/WorkerContextExample/README.md index eb5e0ac7b..10509c7bf 100644 --- a/sdk-dotnet/Examples/WorkerContextExample/README.md +++ b/sdk-dotnet/Examples/WorkerContextExample/README.md @@ -36,7 +36,7 @@ parameter to the signature of your task: ``` [LHTaskMethod("task")] - public void ProcessTask(LHWorkerContext context) + public void ProcessTask(long requestTime, LHWorkerContext context) { ... } diff --git a/sdk-dotnet/LittleHorse.Sdk/README.md b/sdk-dotnet/LittleHorse.Sdk/README.md index 42fa90e33..a93e8faa6 100644 --- a/sdk-dotnet/LittleHorse.Sdk/README.md +++ b/sdk-dotnet/LittleHorse.Sdk/README.md @@ -41,7 +41,7 @@ dotnet build ./LittleHorse.Sdk dotnet test ./LittleHorse.Sdk.Tests ``` -### Run Example +### Run Examples ``` dotnet run --project ./Examples/BasicExample