From 0a1cb857b51da6afd41f347843e04e6082fea1a9 Mon Sep 17 00:00:00 2001 From: Ori Zohar Date: Fri, 5 Jun 2020 17:10:21 -0700 Subject: [PATCH] Minor style changes --- concepts/bindings/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/concepts/bindings/README.md b/concepts/bindings/README.md index 9ca0a8662..9db291128 100644 --- a/concepts/bindings/README.md +++ b/concepts/bindings/README.md @@ -1,15 +1,15 @@ # Bindings -Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems. This feature provides several advantages for you and your code: +Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems. This building block provides several benefits for you and your code: -* You can remove the complexities of connecting to, and polling from, messaging systems such as queues, message buses, etc... -* You can focus on business logic and not implementation details of how to interact with a system -* You can keep your code free from SDKs or libraries -* You can handle retries and failure recovery -* You can switch between bindings at run time -* You can build portable applications where environment-specific bindings are set-up and no code changes are required +* Remove the complexities of connecting to, and polling from, messaging systems such as queues and message buses +* Focus on business logic and not implementation details of how to interact with a system +* Keep your code free from SDKs or libraries +* Handle retries and failure recovery +* Switch between bindings at run time +* Build portable applications where environment-specific bindings are set-up and no code changes are required -For a specific example, bindings would allow your microservice to respond to incoming Twilio/SMS messages without adding/configuring a third-party Twilio SDK, worrying about polling from Twilio (or doing websockets, etc...). +For a specific example, bindings would allow your microservice to respond to incoming Twilio/SMS messages without adding or configuring a third-party Twilio SDK, worrying about polling from Twilio (or using websockets, etc.). Bindings are developed independently of Dapr runtime. You can view and contribute to the bindings [here](https://github.com/dapr/components-contrib/tree/master/bindings).