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/eta_reduction.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/src/lints/eta_reduction.rs') diff --git a/lib/src/lints/eta_reduction.rs b/lib/src/lints/eta_reduction.rs index 3a483d0..9df3f1e 100644 --- a/lib/src/lints/eta_reduction.rs +++ b/lib/src/lints/eta_reduction.rs @@ -17,7 +17,7 @@ use rnix::{ /// /// ## Example /// -/// ``` +/// ```nix /// let /// double = i: 2 * i; /// in @@ -27,7 +27,7 @@ use rnix::{ /// The lambda passed to the `map` function is eta-reducible, and the /// result reads more naturally: /// -/// ``` +/// ```nix /// let /// double = i: 2 * i; /// in -- cgit v1.2.3