@@ -135,7 +135,7 @@ static CONFIG: once_cell::sync::Lazy<utoipa_config::Config> =
135135/// * `min_properties = ...` Can be used to define minimum number of properties this struct can
136136/// contain. Value must be a number.
137137///* `no_recursion` Is used to break from recursion in case of looping schema tree e.g. `Pet` ->
138- /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Ower ` type not to allow
138+ /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Owner ` type not to allow
139139/// recurring into `Pet`. Failing to do so will cause infinite loop and runtime **panic**. On
140140/// struct level the _`no_recursion`_ rule will be applied to all of its fields.
141141///
@@ -202,7 +202,7 @@ static CONFIG: once_cell::sync::Lazy<utoipa_config::Config> =
202202///* `ignore` or `ignore = ...` Can be used to skip the field from being serialized to OpenAPI schema. It accepts either a literal `bool` value
203203/// or a path to a function that returns `bool` (`Fn() -> bool`).
204204///* `no_recursion` Is used to break from recursion in case of looping schema tree e.g. `Pet` ->
205- /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Ower ` type not to allow
205+ /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Owner ` type not to allow
206206/// recurring into `Pet`. Failing to do so will cause infinite loop and runtime **panic**.
207207///
208208/// #### Field nullability and required rules
@@ -267,7 +267,7 @@ static CONFIG: once_cell::sync::Lazy<utoipa_config::Config> =
267267/// * `content_media_type = ...` Can be used to define MIME type of a string for underlying schema object.
268268/// See [`Object::content_media_type`][schema_object_media_type]
269269///* `no_recursion` Is used to break from recursion in case of looping schema tree e.g. `Pet` ->
270- /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Ower ` type not to allow
270+ /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Owner ` type not to allow
271271/// recurring into `Pet`. Failing to do so will cause infinite loop and runtime **panic**.
272272///
273273/// # Enum Optional Configuration Options for `#[schema(...)]`
@@ -335,7 +335,7 @@ static CONFIG: once_cell::sync::Lazy<utoipa_config::Config> =
335335/// field for enums with single unnamed _`ToSchema`_ reference field. See the [discriminator
336336/// syntax][derive@ToSchema#schemadiscriminator-syntax].
337337///* `no_recursion` Is used to break from recursion in case of looping schema tree e.g. `Pet` ->
338- /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Ower ` type not to allow
338+ /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Owner ` type not to allow
339339/// recurring into `Pet`. Failing to do so will cause infinite loop and runtime **panic**. On
340340/// enum level the _`no_recursion`_ rule will be applied to all of its variants.
341341///
@@ -391,7 +391,7 @@ static CONFIG: once_cell::sync::Lazy<utoipa_config::Config> =
391391/// * `min_properties = ...` Can be used to define minimum number of properties this struct can
392392/// contain. Value must be a number.
393393///* `no_recursion` Is used to break from recursion in case of looping schema tree e.g. `Pet` ->
394- /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Ower ` type not to allow
394+ /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Owner ` type not to allow
395395/// recurring into `Pet`. Failing to do so will cause infinite loop and runtime **panic**. On
396396/// named field variant level the _`no_recursion`_ rule will be applied to all of its fields.
397397///
@@ -422,7 +422,7 @@ static CONFIG: once_cell::sync::Lazy<utoipa_config::Config> =
422422/// not in the code. If you'd like to mark the field as deprecated in the code as well use
423423/// Rust's own `#[deprecated]` attribute instead.
424424///* `no_recursion` Is used to break from recursion in case of looping schema tree e.g. `Pet` ->
425- /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Ower ` type not to allow
425+ /// `Owner` -> `Pet`. _`no_recursion`_ attribute must be used within `Owner ` type not to allow
426426/// recurring into `Pet`. Failing to do so will cause infinite loop and runtime **panic**.
427427///
428428/// #### Mixed Enum Unnamed Field Variant's Field Configuration Options
@@ -3771,7 +3771,7 @@ mod parse_utils {
37713771 Punctuated :: parse_terminated ( & group)
37723772 }
37733773
3774- pub fn parse_comma_separated_within_parethesis_with < T > (
3774+ pub fn parse_comma_separated_within_parenthesis_with < T > (
37753775 input : ParseStream ,
37763776 with : fn ( ParseStream ) -> syn:: Result < T > ,
37773777 ) -> syn:: Result < Punctuated < T , Comma > >
0 commit comments