From 78dda5ec5a637b7756ae17d69ff90cf5de210404 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 31 Oct 2021 20:45:57 -0400 Subject: fix tests --- lib/src/lints/bool_comparison.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/src/lints/bool_comparison.rs') diff --git a/lib/src/lints/bool_comparison.rs b/lib/src/lints/bool_comparison.rs index 5c9bee8..ed1e8bb 100644 --- a/lib/src/lints/bool_comparison.rs +++ b/lib/src/lints/bool_comparison.rs @@ -17,13 +17,13 @@ use rnix::{ /// ## Example /// Instead of checking the value of `x`: /// -/// ``` +/// ```nix /// if x == true then 0 else 1 /// ``` /// /// Use `x` directly: /// -/// ``` +/// ```nix /// if x then 0 else 1 /// ``` #[lint( -- cgit v1.2.3