From 321b032943dbdc31f7abb8fc26e164c613eb14f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hompus?= Date: Sun, 29 Mar 2020 20:05:55 +0200 Subject: [PATCH 1/3] Improve example creating actor --- FAQ.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/FAQ.md b/FAQ.md index 488b486bd..6c9d5e1e0 100644 --- a/FAQ.md +++ b/FAQ.md @@ -35,10 +35,9 @@ Also Dapr is about more than just actors. It provides you with a set of best pra Virtual actors capabilities are one of the building blocks that Dapr provides in its runtime. With Dapr because it is programming language agnostic with an http/gRPC API, the actors can be called from any language. This allows actors written in one language to invoke actors written in a different language. -Creating a new actor follows a local call like http://localhost:3500/v1.0/actors///meth... -for example http://localhost:3500/v1.0/actors/myactor/50/method/getData to call the getData method on myactor with id=50 +Creating a new actor follows a local call like http://localhost:3500/v1.0/actors/\/\/…, for example to call the `getData` method on the newly created `myactor` with id `50`. -The Dapr runtime SDKs have language specific actor frameworks. The the .NET SDK for example has C# actors. You will see all the SDKs have an actor framework that fits with the language +The Dapr runtime SDKs have language specific actor frameworks. The the .NET SDK for example has C# actors. You will see all the SDKs have an actor framework that fits with the language. ## Developer language SDKs and frameworks From c686ed6efe43f8283334e0c6cc9cff87d081808c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hompus?= Date: Sun, 29 Mar 2020 20:29:56 +0200 Subject: [PATCH 2/3] Fix double 'the' --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 6c9d5e1e0..5cd3d6799 100644 --- a/FAQ.md +++ b/FAQ.md @@ -37,7 +37,7 @@ Virtual actors capabilities are one of the building blocks that Dapr provides in Creating a new actor follows a local call like http://localhost:3500/v1.0/actors/\/\/…, for example to call the `getData` method on the newly created `myactor` with id `50`. -The Dapr runtime SDKs have language specific actor frameworks. The the .NET SDK for example has C# actors. You will see all the SDKs have an actor framework that fits with the language. +The Dapr runtime SDKs have language specific actor frameworks. The .NET SDK for example has C# actors. You will see all the SDKs have an actor framework that fits with the language. ## Developer language SDKs and frameworks From 44d4da843a00c3e471ea2981551fdfdd7f686e20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hompus?= Date: Sun, 29 Mar 2020 20:32:33 +0200 Subject: [PATCH 3/3] Fix sentence based on @msfussell's comments --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 5cd3d6799..b2dee24c4 100644 --- a/FAQ.md +++ b/FAQ.md @@ -37,7 +37,7 @@ Virtual actors capabilities are one of the building blocks that Dapr provides in Creating a new actor follows a local call like http://localhost:3500/v1.0/actors/\/\/…, for example to call the `getData` method on the newly created `myactor` with id `50`. -The Dapr runtime SDKs have language specific actor frameworks. The .NET SDK for example has C# actors. You will see all the SDKs have an actor framework that fits with the language. +The Dapr runtime SDKs have language specific actor frameworks. The .NET SDK for example has C# actors. The goal is for all the Dapr language SDKs to have an actor framework. ## Developer language SDKs and frameworks