From 8ee237a9c697e4327afa5b4d66be9f411385047a Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 26 Nov 2014 18:14:28 +0100 Subject: [PATCH] Fix documentation syntax typo --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 801ef324d5..1332eece4d 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1087,7 +1087,7 @@ By default Jersey will be set up as a Servlet in a `@Bean` of type `ServletRegistrationBean` named "jerseyServletRegistration". You can disable or override that bean by creating one of your own with the same name. You can also use a Filter instead of a Servlet by setting `spring.jersey.type=filter` (in which case the `@Bean` to -replace or override is "jerseyFilterRegistration"). The servlet has an `@Order`which you +replace or override is "jerseyFilterRegistration"). The servlet has an `@Order` which you can set with `spring.jersey.filter.order`. Both the Servlet and the Filter registrations can be given init parameters using `spring.jersey.init.*` to specify a map of properties.