Merge pull request #1957 from Giovds/fix/typo-in-how-to-actor-docs

(doc) Fix typo in howto-actors.md
This commit is contained in:
greenie-msft 2021-11-16 15:38:21 -08:00 committed by GitHub
commit 7e7eb8332f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ Actors can schedule periodic work on themselves by registering either timers or
The functionality of timers and reminders is very similar. The main difference is that Dapr actor runtime is not retaining any information about timers after deactivation, while persisting the information about reminders using Dapr actor state provider.
This distintcion allows users to trade off between light-weight but stateless timers vs. more resource-demanding but stateful reminders.
This distinction allows users to trade off between light-weight but stateless timers vs. more resource-demanding but stateful reminders.
The scheduling configuration of timers and reminders is identical, as summarized below: