Skip to content

Commit 4884971

Browse files
authored
Merge pull request #1029 from tbcs/patch-1
docs: remove redundant semicolon in code example
2 parents 3a7e851 + b7593bf commit 4884971

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs-v2/_docs/extending-wiremock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ In Java 8 and above this can be achieved using a lambda:
234234

235235
```java
236236
wireMockServer.stubFor(requestMatching(request ->
237-
MatchResult.of(request.getBody().length > 2048);
237+
MatchResult.of(request.getBody().length > 2048)
238238
).willReturn(aResponse().withStatus(422)));
239239
```
240240

0 commit comments

Comments
 (0)