From 40c6437505a8a5228a39f9305897a80ca2827bd2 Mon Sep 17 00:00:00 2001 From: Ben Klein Date: Mon, 21 Sep 2015 10:31:16 -0400 Subject: [PATCH] correct paths in 'Adding Service Support' section --- docs/src/main/asciidoc/spring-cloud-connectors.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-connectors.adoc b/docs/src/main/asciidoc/spring-cloud-connectors.adoc index 436ebba..4bc6e02 100644 --- a/docs/src/main/asciidoc/spring-cloud-connectors.adoc +++ b/docs/src/main/asciidoc/spring-cloud-connectors.adoc @@ -326,9 +326,9 @@ Register your `ServiceInfoCreator` classes in the appropriate provider-configura [cols="2,8", width="100%"] |========================================================================================================================================================================= -|**Cloud Foundry** | Add the fully-qualified class name for your creator to `META-INF/service/org.springframework.cloud.cloudfoundry.CloudFoundryServiceInfoCreator`. -|**Heroku** | Add the fully-qualified class name for your creator to `META-INF/service/org.springframework.cloud.heroku.HerokuServiceInfoCreator`. -|**local-configuration** | Add the fully-qualified class name for your creator to `META-INF/service/org.springframework.cloud.localconfig.LocalConfigServiceInfoCreator`. +|**Cloud Foundry** | Add the fully-qualified class name for your creator to `META-INF/services/org.springframework.cloud.cloudfoundry.CloudFoundryServiceInfoCreator`. +|**Heroku** | Add the fully-qualified class name for your creator to `META-INF/services/org.springframework.cloud.heroku.HerokuServiceInfoCreator`. +|**local-configuration** | Add the fully-qualified class name for your creator to `META-INF/services/org.springframework.cloud.localconfig.LocalConfigServiceInfoCreator`. |========================================================================================================================================================================= === Adding Service Connectors