File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
spring-web/src/main/java/org/springframework/web/util/pattern Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 43
43
* <li>{@code *} matches zero or more characters within a path segment</li>
44
44
* <li>{@code **} matches zero or more <em>path segments</em> until the end of the path</li>
45
45
* <li><code>{spring}</code> matches a <em>path segment</em> and captures it as a variable named "spring"</li>
46
- * <li><code>{spring:[a-z]+}</code> matches the regexp {@code [a-z]+} as a path variable named "spring"</li>
46
+ * <li><code>{spring:[a-z]+}</code> matches the regexp {@code [a-z]+} against a path segment
47
+ * and captures it a path variable named "spring"</li>
47
48
* <li><code>{*spring}</code> matches zero or more <em>path segments</em> until the end of the path
48
49
* and captures it as a variable named "spring"</li>
49
50
* </ul>
You can’t perform that action at this time.
0 commit comments