From 4861c026d47767782f77dda4c94918d2f712f421 Mon Sep 17 00:00:00 2001 From: Ryan Morgan Date: Thu, 9 May 2013 12:30:34 -0700 Subject: [PATCH] Fix typos --- spring-cloud-service-connector/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-cloud-service-connector/README.md b/spring-cloud-service-connector/README.md index b3a1b8d..e703247 100644 --- a/spring-cloud-service-connector/README.md +++ b/spring-cloud-service-connector/README.md @@ -30,7 +30,7 @@ Each namespace element that creates a bean corresponding to a service follows th This creates a `javax.sql.DataSource` bean with the `inventory-db` id, binding it to `inventory-db-service`. The created `DataSource` bean is configured with connection and pool propeties as specified in the nested elements. -When the `id` attribute is not specified, the service name is used as the `id`. When the `service-name` is not specified, the bean is bound to the only service in the correspding category (relational database, in this case). If no unique service is found, a runtime exception is thrown. +When the `id` attribute is not specified, the service name is used as the `id`. When the `service-name` is not specified, the bean is bound to the only service in the corresponding category (relational database, in this case). If no unique service is found, a runtime exception is thrown. Other namespace elements that create service connector include: @@ -38,7 +38,7 @@ Other namespace elements that create service connector include: -Generic `` element -------------------------------- We also supports a generic `` namespace to allow connecting to a service that doesn't have directly mapped element (typical for a newly introduced service or connecting to a private service in private PaaS). You must specify either the `connector-type` attribute (so that it can find a unique service matching that type) or the `service-name` attribute.