This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git
The following commit(s) were added to refs/heads/master by this push:
new 1fe84d1ed fix link
1fe84d1ed is described below
commit 1fe84d1ed7a09c5fda0a37b67b37b1202ca39424
Author: Konrad Windszus <[email protected]>
AuthorDate: Wed May 11 17:21:28 2022 +0200
fix link
---
src/main/jbake/content/documentation/the-sling-engine/servlets.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/jbake/content/documentation/the-sling-engine/servlets.md
b/src/main/jbake/content/documentation/the-sling-engine/servlets.md
index b852f03e9..644ee7d16 100644
--- a/src/main/jbake/content/documentation/the-sling-engine/servlets.md
+++ b/src/main/jbake/content/documentation/the-sling-engine/servlets.md
@@ -299,7 +299,7 @@ While an opting servlet seems to be a nice way of picking
the right servlet to p
The following order rules are being followed when trying to resolve a servlet
for a given request URL and request method and multiple candidates would match.
Then the following candidate is being picked (if one rule doesn't lead to one
winner, the next rule is being evaluated):
1. The one with the highest number of matching selectors + extension
-2. The one which is registered to a resource type closest to the requested one
(when traversing the resource type hierarchy up), refer to section [Resource
Type Inheritance (#resource-type-inheritance) for more details
+2. The one which is registered to a resource type closest to the requested one
(when traversing the resource type hierarchy up), refer to section [Resource
Type Inheritance](#resource-type-inheritance) for more details
3. The one with the highest `service.ranking` property
In case of an `OptingServlet` not matching the next candidate is being used.