From 75652b30328134bf3dcca713cbf4f1c7502533f6 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Tue, 30 Jul 2019 14:59:23 +0200 Subject: [PATCH] Updated Request Matching (markdown) --- Request-Matching.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Request-Matching.md b/Request-Matching.md index 2d607ca..84f7dd3 100644 --- a/Request-Matching.md +++ b/Request-Matching.md @@ -164,10 +164,10 @@ server ``` // matching -{ "x": 1, "s": "s" } +{ "x": 42, "s": "s" } // not matching -{ "x": 2, "s": "x" } +{ "x": 42, "s": "x" } ```