From ac2bbea0918c1cf36b3fbfd3deee238f190efad8 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Fri, 13 Oct 2017 16:03:31 +0100 Subject: [PATCH] Fix typo in documentation - As error handling sample is using `CustomErrorType`, fix description which mentions `CustomerErrorType`. --- 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 14522cd3a7..a30c3514bd 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -2035,7 +2035,7 @@ particular controller and/or exception type. ---- In the example above, if `YourException` is thrown by a controller defined in the same -package as `FooController`, a json representation of the `CustomerErrorType` POJO will be +package as `FooController`, a json representation of the `CustomErrorType` POJO will be used instead of the `ErrorAttributes` representation.