@@ -20,7 +20,7 @@ should install version
2020[ 2.0.0] ( https://github.com/appercept/Delphi-WebMocks/releases/tag/2.0.0 ) .
2121
2222## Installation: GetIt
23- [ WebMocks 3.1 .0] ( https://getitnow.embarcadero.com/webmocks/ ) is available
23+ [ WebMocks 3.2 .0] ( https://getitnow.embarcadero.com/webmocks/ ) is available
2424through Embarcadero's package manager for Delphi
2525[ GetIt] ( https://getitnow.embarcadero.com/ ) . If you have a recent version of
2626Delphi including GetIt then this should be the preferred installation method.
@@ -34,7 +34,7 @@ not be found in your test projects.
3434
3535## Installation: Manual
36361 . Download and extract the latest version
37- [ 3.2.0 ] ( https://github.com/appercept/Delphi-WebMocks/archive/3.2.0 .zip ) .
37+ [ 3.2.1 ] ( https://github.com/appercept/Delphi-WebMocks/archive/3.2.1 .zip ) .
38382 . In "Tools > Options" under the "Language / Delphi / Library" add the
3939 extracted ` Source ` directory to the "Library path" and "Browsing path".
4040
117117```
118118
119119By default ` TWebMock ` will bind to a port dynamically assigned start at ` 8080 ` .
120- This behaviour can be overriden by specifying a port at creation.
120+ This behaviour can be overridden by specifying a port at creation.
121121``` Delphi
122122WebMock := TWebMock.Create(8088);
123123```
@@ -351,7 +351,7 @@ WebMock.StubRequest('GET', '/')
351351
352352#### Stubbed Response Content: Fixture Files
353353When stubbing responses with binary or large content it is likely easier to
354- provide the content as a file. This can be acheived using ` WithBodyFile `
354+ provide the content as a file. This can be achieved using ` WithBodyFile `
355355which has the same signature as ` WithBody ` but the first argument is the
356356path to a file.
357357``` Delphi
@@ -360,7 +360,7 @@ WebMock.StubRequest('GET', '/').WithBodyFile('image.jpg');
360360
361361The Delphi-WebMocks will attempt to set the content-type according to the file
362362extension. If the file type is unknown then the content-type will default to
363- ` application/octet-stream ` . The content-type can be overriden with the second
363+ ` application/octet-stream ` . The content-type can be overridden with the second
364364argument. e.g.
365365``` Delphi
366366WebMock.StubRequest('GET', '/').WithBodyFile('file.myext', 'application/xml');
@@ -487,7 +487,7 @@ performing extra unwanted requests.
487487This project follows [ Semantic Versioning] ( https://semver.org ) .
488488
489489## License
490- Copyright ©2019-2022 Richard Hatherall < richard@appercept.com >
490+ Copyright ©2019-2024 Richard Hatherall < richard@appercept.com >
491491
492492WebMocks is distributed under the terms of the Apache License (Version 2.0).
493493
0 commit comments