From faeac607642707566009891a0ebf6850057a7a7d Mon Sep 17 00:00:00 2001 From: Mario Carbajal Date: Tue, 2 Jul 2024 11:19:31 -0300 Subject: [PATCH] Fix indentation --- stylance/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stylance/src/lib.rs b/stylance/src/lib.rs index 7e182e7..c2d5396 100644 --- a/stylance/src/lib.rs +++ b/stylance/src/lib.rs @@ -128,7 +128,7 @@ pub mod internal { /// - Optionally add pub keyword before `module_identifier` to make the generated module public. /// - `module_identifier`: This will be used as the name of the module generated by this macro. /// - `style_path`: This should be a string literal with the path to a css file inside your rust -/// crate. The path is relative to the file where this macro was called from. +/// crate. The path is relative to the file where this macro was called from. /// /// ### Example /// ```rust @@ -168,7 +168,7 @@ macro_rules! import_style { /// - Optionally add pub keyword before `module_identifier` to make the generated module public. /// - `module_identifier`: This will be used as the name of the module generated by this macro. /// - `style_path`: This should be a string literal with the path to a css file inside your rust -/// crate. The path must be relative to the cargo manifest directory (The directory that has Cargo.toml). +/// crate. The path must be relative to the cargo manifest directory (The directory that has Cargo.toml). /// /// ### Example /// ```rust