From 0312d7e32c71cf35cb476b05bb7ee0330b0cd953 Mon Sep 17 00:00:00 2001 From: Shailendra Singh Date: Wed, 20 May 2020 00:43:25 +0200 Subject: [PATCH] Update README.md (#581) Corrected wordings Co-authored-by: Young Bu Park --- concepts/bindings/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/concepts/bindings/README.md b/concepts/bindings/README.md index 3fd514217..285696cbc 100644 --- a/concepts/bindings/README.md +++ b/concepts/bindings/README.md @@ -1,13 +1,13 @@ # Bindings Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems. -Bindings allow for on-demand, event-driven compute scenarios, and dapr bindings help developers with the following: +Bindings allow for on-demand, event-driven compute scenarios, and help developers with the following: * Remove the complexities of connecting to, and polling from, messaging systems such as queues, message buses, etc. -* Focus on business logic and not the implementation details of how interact with a system +* Focus on business logic and not the implementation details of how to interact with a system * Keep the code free from SDKs or libraries * Handles retries and failure recovery -* Switch between bindings at runtime time +* Switch between bindings at run time * Enable portable applications where environment-specific bindings are set-up and no code changes are required 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).