From 309c43ef4cd78fbc70fcc4108c6eaf8c1684a571 Mon Sep 17 00:00:00 2001 From: Benjamin Maurer Date: Fri, 27 Apr 2018 18:21:51 +0200 Subject: [PATCH] DATAREST-1195 - Fixed wrong RepositoryDetectionStrategies value in docs. Issue DATAREST-1195 raises this only as a secondary question in the last paragraph. Name of enum value in documentation was 'ANNOTATION', should be 'ANNOTATED'. --- src/main/asciidoc/getting-started.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/getting-started.adoc b/src/main/asciidoc/getting-started.adoc index ce82a4249c..a3bfeaa725 100644 --- a/src/main/asciidoc/getting-started.adoc +++ b/src/main/asciidoc/getting-started.adoc @@ -91,7 +91,7 @@ Spring Data REST uses a `RepositoryDetectionStrategy` to determine if a reposito | `DEFAULT` | Exposes all public repository interfaces but considers `@(Repository)RestResource`'s `exported` flag. | `ALL` | Exposes all repositories independently of type visibility and annotations. -| `ANNOTATION` | Only repositories annotated with `@(Repository)RestResource` are exposed, unless their `exported` flag is set to `false`. +| `ANNOTATED` | Only repositories annotated with `@(Repository)RestResource` are exposed, unless their `exported` flag is set to `false`. | `VISIBILITY` | Only public repositories annotated are exposed. |===