Skip to content

Commit

Permalink
Fix docs links (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
Folyd committed Nov 9, 2021
1 parent 7710f2c commit 028f8a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion axum/src/docs/handlers_intro.md
@@ -1,5 +1,5 @@
In axum a "handler" is an async function that accepts zero or more
["extractors"](#extractors) as arguments and returns something that
["extractors"](crate::extract) as arguments and returns something that
can be converted [into a response](crate::response).

Handlers is where your application logic lives and axum applications are built
Expand Down
2 changes: 2 additions & 0 deletions axum/src/handler/mod.rs
Expand Up @@ -67,6 +67,8 @@
//! This error doesn't tell you _why_ your function doesn't implement
//! [`Handler`]. It's possible to improve the error with the [`debug_handler`]
//! proc-macro from the [axum-debug] crate.
//!
//! [axum-debug]: https://docs.rs/axum-debug

use crate::{
body::{box_body, BoxBody},
Expand Down

0 comments on commit 028f8a7

Please sign in to comment.