From 56bb3317607f72a4a2f00ab01f15f9e78d29096d Mon Sep 17 00:00:00 2001 From: John Tims Date: Sun, 2 Mar 2014 08:27:12 -0500 Subject: [PATCH] SEC-2514: Fix typo in hellomvc.asc packags -> packages --- docs/guides/src/asciidoc/hellomvc.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/src/asciidoc/hellomvc.asc b/docs/guides/src/asciidoc/hellomvc.asc index 954f1f5869..6c871e118b 100644 --- a/docs/guides/src/asciidoc/hellomvc.asc +++ b/docs/guides/src/asciidoc/hellomvc.asc @@ -75,7 +75,7 @@ public class RootConfiguration { } ---- -The `@ComponentScan` is loading all configuration within the same package (and child packags) as `RootConfiguration`. Since <> is in this package, it will be loaded with our existing setup and there is nothing more to do. +The `@ComponentScan` is loading all configuration within the same package (and child packages) as `RootConfiguration`. Since <> is in this package, it will be loaded with our existing setup and there is nothing more to do. NOTE: Had <> not been loaded, we could have used an `@Import(SecurityConfig)` above the class definition of <> or added <> as one of the results for `getRootConfigClasses()`.