From 990030cc5de0ddb4f03f675a99e9cb6000d71538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Avila=20Gast=C3=B3n?= <72628438+avilagaston9@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:27:54 -0300 Subject: [PATCH] Update lib/ssz_ex/error.ex MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tomás Grüner <47506558+MegaRedHand@users.noreply.github.com> --- lib/ssz_ex/error.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ssz_ex/error.ex b/lib/ssz_ex/error.ex index 482c60835..fa20dfa41 100644 --- a/lib/ssz_ex/error.ex +++ b/lib/ssz_ex/error.ex @@ -4,7 +4,7 @@ defmodule SszEx.Error do """ alias SszEx.Error defstruct [:message] - @type t :: %__MODULE__{message: binary()} + @type t :: %__MODULE__{message: String.t()} def format(%Error{message: message}) do "#{message}"