1
0
mirror of https://github.com/actix/actix-website synced 2025-06-27 07:29:02 +02:00

update testing docs to give less precedence to unit testing

This commit is contained in:
Rob Ede
2023-09-10 02:56:48 +01:00
parent e67443f4e8
commit c5a9579193
6 changed files with 22 additions and 18 deletions

View File

@ -10,7 +10,7 @@ A request handler is an async function that accepts zero or more parameters that
Request handling happens in two stages. First the handler object is called, returning any object that implements the [_Responder_][respondertrait] trait. Then, `respond_to()` is called on the returned object, converting itself to a `HttpResponse` or `Error`.
By default actix-web provides `Responder` implementations for some standard types, such as `&'static str`, `String`, etc.
By default Actix Web provides `Responder` implementations for some standard types, such as `&'static str`, `String`, etc.
> For a complete list of implementations, check the [_Responder documentation_][responderimpls].