Skip to content

Commit

Permalink
chore: remove unnecessary escape char in fromProviderState docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Jul 29, 2024
1 parent c852019 commit 7446e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/matching.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7446e27

Please sign in to comment.