1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00

Fixes trivial typos.

This commit is contained in:
Clifford T. Matthews 2019-06-06 15:20:25 -06:00
parent aa5750cafc
commit f7dd2e6236
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
## Middleware example
```bash
cd form
cd middleware
cargo run
# Started http server: 127.0.0.1:8080
```

View File

@ -3,10 +3,10 @@ use actix_web::{dev::ServiceRequest, dev::ServiceResponse, Error};
use futures::future::{ok, FutureResult};
use futures::{Future, Poll};
// There are two step in middleware processing.
// 1. Middleware initialization, middleware factory get called with
// There are two steps in middleware processing.
// 1. Middleware initialization, middleware factory gets called with
// next service in chain as parameter.
// 2. Middleware's call method get called with normal request.
// 2. Middleware's call method gets called with normal request.
pub struct SayHi;
// Middleware factory is `Transform` trait from actix-service crate