mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 17:41:11 +00:00
fix typo
This commit is contained in:
parent
22c776f46e
commit
95f6277007
2 changed files with 3 additions and 2 deletions
|
@ -22,8 +22,8 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust.
|
|||
|
||||
## Documentation & community resources
|
||||
|
||||
* [User Guide](https://actix.github.io/actix-web/guide/)
|
||||
* [API Documentation (Development)](https://actix.github.io/actix-web/actix_web/)
|
||||
* [User Guide](https://actix.rs/actix-web/guide/)
|
||||
* [API Documentation (Development)](https://actix.rs/actix-web/actix_web/)
|
||||
* [API Documentation (Releases)](https://docs.rs/actix-web/)
|
||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
|
||||
|
|
|
@ -203,6 +203,7 @@ impl HttpResponse {
|
|||
|
||||
STATIC_RESP!(MultipleChoices, StatusCode::MULTIPLE_CHOICES);
|
||||
STATIC_RESP!(MovedPermanenty, StatusCode::MOVED_PERMANENTLY);
|
||||
STATIC_RESP!(MovedPermanently, StatusCode::MOVED_PERMANENTLY);
|
||||
STATIC_RESP!(Found, StatusCode::FOUND);
|
||||
STATIC_RESP!(SeeOther, StatusCode::SEE_OTHER);
|
||||
STATIC_RESP!(NotModified, StatusCode::NOT_MODIFIED);
|
||||
|
|
Loading…
Reference in a new issue