From a90452774ac35a5059157a7b3090890ff23a626a Mon Sep 17 00:00:00 2001 From: Jack Lindamood Date: Tue, 18 Feb 2020 10:19:53 -0800 Subject: [PATCH] ingress-path-matching: doc typo A small typo in the README describing the path matching. --- docs/user-guide/ingress-path-matching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/ingress-path-matching.md b/docs/user-guide/ingress-path-matching.md index 9fc9c2a3a..149ebfedd 100644 --- a/docs/user-guide/ingress-path-matching.md +++ b/docs/user-guide/ingress-path-matching.md @@ -158,4 +158,4 @@ location ~* "^/foo/bar/bar" { } ``` -A request to `test.com/foo/bar/bar` would match the `^/foo/[A-Z0-9]{3}` location block instead of the longest EXACT matching path. +A request to `test.com/foo/bar/bar` would match the `^/foo/bar/[A-Z0-9]{3}` location block instead of the longest EXACT matching path.