diff --git a/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md index a412cc014..3b7ad2068 100644 --- a/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md @@ -18,7 +18,7 @@ Currently, you can experience this actors quickstart using the .NET SDK. As a quick overview of the .NET actors quickstart: 1. Using a `SmartDevice.Service` microservice, you host: - - Two `SmartDectectorActor` smoke alarm objects + - Two `SmokeDetectorActor` smoke alarm objects - A `ControllerActor` object that commands and controls the smart devices 1. Using a `SmartDevice.Client` console app, the client app interacts with each actor, or the controller, to perform actions in aggregate. 1. The `SmartDevice.Interfaces` contains the shared interfaces and data types used by both the service and client apps. @@ -119,7 +119,7 @@ If you have Zipkin configured for Dapr locally on your machine, you can view the When you ran the client app, a few things happened: -1. Two `SmartDetectorActor` actors were [created in the client application](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/client/Program.cs) and initialized with object state with: +1. Two `SmokeDetectorActor` actors were [created in the client application](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/client/Program.cs) and initialized with object state with: - `ActorProxy.Create(actorId, actorType)` - `proxySmartDevice.SetDataAsync(data)` @@ -177,7 +177,7 @@ When you ran the client app, a few things happened: Console.WriteLine($"Device 2 state: {storedDeviceData2}"); ``` -1. The [`DetectSmokeAsync` method of `SmartDetectorActor 1` is called](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/SmokeDetectorActor.cs#L70). +1. The [`DetectSmokeAsync` method of `SmokeDetectorActor 1` is called](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/SmokeDetectorActor.cs#L70). ```csharp public async Task DetectSmokeAsync() @@ -216,7 +216,7 @@ When you ran the client app, a few things happened: await proxySmartDevice1.DetectSmokeAsync(); ``` -1. The [`SoundAlarm` methods](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/SmokeDetectorActor.cs#L78) of `SmartDetectorActor 1` and `2` are called. +1. The [`SoundAlarm` methods](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/SmokeDetectorActor.cs#L78) of `SmokeDetectorActor 1` and `2` are called. ```csharp storedDeviceData1 = await proxySmartDevice1.GetDataAsync(); @@ -234,9 +234,9 @@ When you ran the client app, a few things happened: For full context of the sample, take a look at the following code: -- [`SmartDetectorActor.cs`](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/SmokeDetectorActor.cs): Implements the smart device actors +- [`SmokeDetectorActor.cs`](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/SmokeDetectorActor.cs): Implements the smart device actors - [`ControllerActor.cs`](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/service/ControllerActor.cs): Implements the controller actor that manages all devices -- [`ISmartDevice`](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/interfaces/ISmartDevice.cs): The method definitions and shared data types for each `SmartDetectorActor` +- [`ISmartDevice`](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/interfaces/ISmartDevice.cs): The method definitions and shared data types for each `SmokeDetectorActor` - [`IController`](https://github.com/dapr/quickstarts/blob/master/actors/csharp/sdk/interfaces/IController.cs): The method definitions and shared data types for the `ControllerActor` {{% /codetab %}} diff --git a/daprdocs/static/images/actors-quickstart/actors-quickstart.png b/daprdocs/static/images/actors-quickstart/actors-quickstart.png index 74631e2ab..3769e1171 100644 Binary files a/daprdocs/static/images/actors-quickstart/actors-quickstart.png and b/daprdocs/static/images/actors-quickstart/actors-quickstart.png differ diff --git a/daprdocs/static/images/service-invocation-overview.png b/daprdocs/static/images/service-invocation-overview.png index 480bbf13c..eadef1e61 100644 Binary files a/daprdocs/static/images/service-invocation-overview.png and b/daprdocs/static/images/service-invocation-overview.png differ