From ce7739e76dd10b45492b6f1a73a41c9b7e59009f Mon Sep 17 00:00:00 2001 From: Eric Seppanen <109770420+eric-seppanen@users.noreply.github.com> Date: Fri, 28 Apr 2023 22:49:21 -0700 Subject: [PATCH] Fix typo in json_lines.rs (#1970) --- axum-extra/src/json_lines.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axum-extra/src/json_lines.rs b/axum-extra/src/json_lines.rs index 7cf47b04..5dbbf263 100644 --- a/axum-extra/src/json_lines.rs +++ b/axum-extra/src/json_lines.rs @@ -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;