@@ -433,20 +433,20 @@ pub fn info_command_handler(_attr: TokenStream, item: TokenStream) -> TokenStrea
433433/// # Notes
434434///
435435/// 1. The name of the struct is taken "as is", so if it starts with
436- /// a capital letter (written in the "Upper Camel Case"), like in this
437- /// example - `Info`, then it will be compiled into a string prefixed
438- /// with the module name, ending up being `"module_name_Info"`-named
439- /// section. The fields of the struct are also prefixed with the module
440- /// name, so the `field_1` will be prefixed with `module_name_` as well.
436+ /// a capital letter (written in the "Upper Camel Case"), like in this
437+ /// example - `Info`, then it will be compiled into a string prefixed
438+ /// with the module name, ending up being `"module_name_Info"`-named
439+ /// section. The fields of the struct are also prefixed with the module
440+ /// name, so the `field_1` will be prefixed with `module_name_` as well.
441441/// 2. In dictionaries, the type of dictionaries supported varies,
442- /// for now it is [`std::collections::BTreeMap`] and
443- /// [`std::collections::HashMap`].
442+ /// for now it is [`std::collections::BTreeMap`] and
443+ /// [`std::collections::HashMap`].
444444/// 3. In dictionaries, the value type can be anything that can be
445- /// converted into an object of type
446- /// [`redis_module::InfoContextBuilderFieldBottomLevelValue`], for
447- /// example, a [`std::string::String`] or [`u64`]. Please, refer to
448- /// [`redis_module::InfoContextBuilderFieldBottomLevelValue`] for more
449- /// information.
445+ /// converted into an object of type
446+ /// [`redis_module::InfoContextBuilderFieldBottomLevelValue`], for
447+ /// example, a [`std::string::String`] or [`u64`]. Please, refer to
448+ /// [`redis_module::InfoContextBuilderFieldBottomLevelValue`] for more
449+ /// information.
450450#[ proc_macro_derive( InfoSection ) ]
451451pub fn info_section ( item : TokenStream ) -> TokenStream {
452452 info_section:: info_section ( item)
0 commit comments