From c7fac02810a567710ca1e62020efd55ff9ad341e Mon Sep 17 00:00:00 2001 From: oyelowo Date: Tue, 10 Oct 2023 18:48:07 -0600 Subject: [PATCH] Allow unitless value in test --- tailwind/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tailwind/src/lib.rs b/tailwind/src/lib.rs index 56fbe25..357a78d 100644 --- a/tailwind/src/lib.rs +++ b/tailwind/src/lib.rs @@ -82,9 +82,9 @@ fn _unsupported_media_query() {} /// /// ```compile_fail /// use tw_macro::tw; -/// tw!("px-[45]"); +/// tw!("px-45]"); /// ``` -fn _missing_unit_after_arbitrary_value() {} +fn malformed_arbitrary_value() {} /// Invalid group usage. ///