From 5a84326f3d8b712780224994de280a302cc1fb1e Mon Sep 17 00:00:00 2001 From: Nick Greenfield Date: Mon, 10 May 2021 13:44:29 -0700 Subject: [PATCH] Use correct method call (AddActors) for registering Actors. --- .../en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-usage.md b/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-usage.md index 4e4aad9f..80274235 100644 --- a/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-usage.md +++ b/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-usage.md @@ -119,7 +119,7 @@ Actor registration is part `ConfigureServices` in `Startup.cs`. The `ConfigureSe Inside `ConfigureServices` you can: -- Register the actor runtime (`UseActors`) +- Register the actor runtime (`AddActors`) - Register actor types (`options.Actors.RegisterActor<>`) - Configure actor runtime settings `options` - Register additional service types for dependency injection into actors (`services`)