1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

Fix typo in json_lines.rs ()

This commit is contained in:
Eric Seppanen 2023-04-28 22:49:21 -07:00 committed by GitHub
parent c7d4af9bd8
commit ce7739e76d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,12 +79,12 @@ pin_project! {
}
}
/// Maker type used to prove that an `JsonLines` was constructed via `FromRequest`.
/// Marker type used to prove that an `JsonLines` was constructed via `FromRequest`.
#[derive(Debug)]
#[non_exhaustive]
pub struct AsExtractor;
/// Maker type used to prove that an `JsonLines` was constructed via `JsonLines::new`.
/// Marker type used to prove that an `JsonLines` was constructed via `JsonLines::new`.
#[derive(Debug)]
#[non_exhaustive]
pub struct AsResponse;