From 71370a157b1b9253b66947b307f34c67612f81d6 Mon Sep 17 00:00:00 2001 From: Quinn Wilton Date: Sun, 23 Jan 2022 17:09:47 -0800 Subject: [PATCH] Prefix unused variable with _ This resolves a compile warning. --- test/do_notation_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/do_notation_test.exs b/test/do_notation_test.exs index 3987bd0..23cae90 100644 --- a/test/do_notation_test.exs +++ b/test/do_notation_test.exs @@ -121,7 +121,7 @@ defmodule Witchcraft.DoNotationTest do b <- [3, 4] let [h | _] = [a * b] c <- [a, b, h] - let tens = c * 10 + let _tens = c * 10 d <- [c - 1, c + 1] [a, b, c, d] end