Skip to content

Commit

Permalink
Merge pull request #1029 from tbcs/patch-1
Browse files Browse the repository at this point in the history
docs: remove redundant semicolon in code example
  • Loading branch information
tomakehurst authored Nov 5, 2018
2 parents 3a7e851 + b7593bf commit 4884971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs-v2/_docs/extending-wiremock.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ In Java 8 and above this can be achieved using a lambda:

```java
wireMockServer.stubFor(requestMatching(request ->
MatchResult.of(request.getBody().length > 2048);
MatchResult.of(request.getBody().length > 2048)
).willReturn(aResponse().withStatus(422)));
```

Expand Down

0 comments on commit 4884971

Please sign in to comment.