From 7d9f4f99414edc841a3db254db753992098fb029 Mon Sep 17 00:00:00 2001 From: nelsonic Date: Wed, 4 Oct 2023 14:39:23 +0100 Subject: [PATCH] alphabetize functions in lib/useful.ex #59 --- test/useful_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/useful_test.exs b/test/useful_test.exs index 0ae4e9b..1d10e25 100644 --- a/test/useful_test.exs +++ b/test/useful_test.exs @@ -244,7 +244,7 @@ defmodule UsefulTest do assert Useful.typeof(:atom) == "atom" end - #  recap: https://elixir-lang.org/getting-started/binaries-strings-and-char-lists.html + # recap: https://elixir-lang.org/getting-started/binaries-strings-and-char-lists.html test "returns \"binary\" when variable is a binary" do string = "hello" assert Useful.typeof(string) == "binary"