1
0
mirror of https://github.com/actix/actix-website synced 2024-11-27 18:12:57 +01:00

Fix typo in testing.md

serivce -> service
This commit is contained in:
Danilo Bargen 2019-10-07 16:47:46 +02:00 committed by GitHub
parent e4eb883a0d
commit 466edc7752
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ to run the application with specific handlers in a real http server.
`TestRequest::get()`, `TestRequest::post()`, and `TestRequest::client()`
methods can be used to send requests to the test server.
To create a `Service` for testing, use the `test::init_serivce` method which accepts a
To create a `Service` for testing, use the `test::init_service` method which accepts a
regular `App` builder.
> Check the [api documentation][actixdocs] for more information.