Correct Ant-style Patterns example in documentation

Closes gh-24552
This commit is contained in:
Sviatoslav Hryb
2020-02-19 11:51:16 +02:00
committed by GitHub
parent 68b980f849
commit 2ad4602ca0

View File

@@ -596,9 +596,9 @@ Path locations can contain Ant-style patterns, as the following example shows:
[literal,subs="verbatim,quotes"]
----
/WEB-INF/*-context.xml
com/mycompany/**/applicationContext.xml
file:C:/some/path/*-context.xml
/WEB-INF/\*-context.xml
com/mycompany/\**/applicationContext.xml
file:C:/some/path/\*-context.xml
classpath:com/mycompany/**/applicationContext.xml
----