Skip to content

Commit 04d1f10

Browse files
Fix text case in WireMock and features summary (#35)
Just testing the pull request template update and doing something useful :) ## References - TODO <!-- References to relevant GitHub issues and pull requests, esp. upstream and downstream changes --> ## Submitter checklist - [ ] Recommended: Join [WireMock Slack](https://slack.wiremock.org/) to get any help in `#help-contributing` or a project-specific channel like `#wiremock-java` - [ ] The PR request is well described and justified, including the body and the references - [ ] The PR title represents the desired changelog entry - [ ] The repository's code style is followed (see the contributing guide) - [ ] Test coverage that demonstrates that the change works as expected - [ ] For new features, there's necessary documentation in this pull request or in a subsequent PR to [wiremock.org](https://github.com/wiremock/wiremock.org) <!-- Put an `x` into the [ ] to show you have filled the information. The template comes from https://github.com/wiremock/.github/blob/main/.github/pull_request_template.md You can override it by creating .github/pull_request_template.md in your own repository -->
1 parent 7a33613 commit 04d1f10

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Adds support to transport state across different stubs.
1515
- append new states a state list
1616
- Delete a state
1717
- delete states from state list (first, last, by index, by state propery comparison)
18-
- request matching against context existance/non-existance
19-
- response templating integration
18+
- Request matching against context existance/non-existance
19+
- Response templating integration
2020
- get state for a given context
2121
- get state list entry by index
22-
- templating support in all configuration options of this extension
22+
- Templating support in all configuration options of this extension
2323

2424
## Glossary
2525

@@ -47,7 +47,7 @@ classDiagram
4747

4848
## Background
4949

50-
Wiremock supports [Response Templating](https://wiremock.org/docs/response-templating/) and [Scenarios](https://wiremock.org/docs/stateful-behaviour/)
50+
WireMock supports [Response Templating](https://wiremock.org/docs/response-templating/) and [Scenarios](https://wiremock.org/docs/stateful-behaviour/)
5151
to add dynamic behavior and state. Both approaches have limitations:
5252

5353
- `Response templating` only allows accessing data submitted in the same request
@@ -214,7 +214,7 @@ add authentication to GitHub packages.
214214

215215
### Java
216216

217-
This extension makes use of Wiremock's `ExtensionFactory`, so only one extension has to be registered: `StateExtension`.
217+
This extension makes use of WireMock's `ExtensionFactory`, so only one extension has to be registered: `StateExtension`.
218218
In order to use them, templating has to be enabled as well. A store for all state data has to be provided. This extension
219219
provides a `CaffeineStore` which can be used - or you can provide your own store:
220220

@@ -755,7 +755,7 @@ Example:
755755

756756
### Error handling
757757

758-
Missing Helper properties as well as unknown context properties are reported as error. Wiremock renders them in the field, itself, so there won't be an
758+
Missing Helper properties as well as unknown context properties are reported as error. WireMock renders them in the field, itself, so there won't be an
759759
exception.
760760

761761
Example response with error:

0 commit comments

Comments
 (0)