From 7446e27ed8e13e795f3215b53cdbb813c1840b42 Mon Sep 17 00:00:00 2001 From: mefellows Date: Tue, 30 Jul 2024 08:45:46 +1000 Subject: [PATCH] chore: remove unnecessary escape char in fromProviderState docs --- docs/matching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/matching.md b/docs/matching.md index f875ce048..285bbc196 100644 --- a/docs/matching.md +++ b/docs/matching.md @@ -274,7 +274,7 @@ For this to work, in the consumer test we use the `fromProviderState` matching f For example: ```js - query: { accountNumber: fromProviderState("\${accountNumber}", "100") }, + query: { accountNumber: fromProviderState("${accountNumber}", "100") }, ``` Then when the provider is verified, the provider state callback can return a map of values. These values will be used to generate the value using the expression supplied from the consumer test.