diff --git a/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md index a412cc01425..3b7ad206891 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 1ed1957140d..3769e1171a3 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/bindings-quickstart/bindings-quickstart.png b/daprdocs/static/images/bindings-quickstart/bindings-quickstart.png index c10bbd38eee..afc3e21cc1e 100644 Binary files a/daprdocs/static/images/bindings-quickstart/bindings-quickstart.png and b/daprdocs/static/images/bindings-quickstart/bindings-quickstart.png differ diff --git a/daprdocs/static/images/configuration-quickstart/configuration-quickstart-flow.png b/daprdocs/static/images/configuration-quickstart/configuration-quickstart-flow.png index 29dc6f44c9e..94310e1feb5 100644 Binary files a/daprdocs/static/images/configuration-quickstart/configuration-quickstart-flow.png and b/daprdocs/static/images/configuration-quickstart/configuration-quickstart-flow.png differ diff --git a/daprdocs/static/images/crypto-quickstart.png b/daprdocs/static/images/crypto-quickstart.png index e6f7fe70fc1..0d315a7d2f0 100644 Binary files a/daprdocs/static/images/crypto-quickstart.png and b/daprdocs/static/images/crypto-quickstart.png differ diff --git a/daprdocs/static/images/pubsub-quickstart/pubsub-diagram.png b/daprdocs/static/images/pubsub-quickstart/pubsub-diagram.png index 21256c81765..dca9a907abb 100644 Binary files a/daprdocs/static/images/pubsub-quickstart/pubsub-diagram.png and b/daprdocs/static/images/pubsub-quickstart/pubsub-diagram.png differ diff --git a/daprdocs/static/images/secretsmanagement-quickstart/secrets-mgmt-quickstart.png b/daprdocs/static/images/secretsmanagement-quickstart/secrets-mgmt-quickstart.png index 643af8ea260..f24c09b1727 100644 Binary files a/daprdocs/static/images/secretsmanagement-quickstart/secrets-mgmt-quickstart.png and b/daprdocs/static/images/secretsmanagement-quickstart/secrets-mgmt-quickstart.png differ diff --git a/daprdocs/static/images/service-invocation-overview.png b/daprdocs/static/images/service-invocation-overview.png index c5b2fe55400..eadef1e6162 100644 Binary files a/daprdocs/static/images/service-invocation-overview.png and b/daprdocs/static/images/service-invocation-overview.png differ diff --git a/daprdocs/static/images/state-management-quickstart.png b/daprdocs/static/images/state-management-quickstart.png index e6606ae97b9..8c07c8a52dd 100644 Binary files a/daprdocs/static/images/state-management-quickstart.png and b/daprdocs/static/images/state-management-quickstart.png differ diff --git a/daprdocs/static/images/workflow-quickstart-overview.png b/daprdocs/static/images/workflow-quickstart-overview.png index d616f210622..7a8ea3e2292 100644 Binary files a/daprdocs/static/images/workflow-quickstart-overview.png and b/daprdocs/static/images/workflow-quickstart-overview.png differ