From 05c4f87619246afcc937abcaab620d3ea611c6f9 Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Thu, 17 Aug 2023 20:42:48 +0200 Subject: [PATCH] Update src/aeserialization.erl with type comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From code review Co-authored-by: Radosław Rowicki <35342116+radrow@users.noreply.github.com> --- src/aeserialization.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aeserialization.erl b/src/aeserialization.erl index ded52fd..0853e91 100644 --- a/src/aeserialization.erl +++ b/src/aeserialization.erl @@ -28,7 +28,7 @@ | 'binary' | 'id' %% As defined in aec_id.erl | [type()] %% Length one in the type. This means a list of any length. - | #{items := [{field_name(), type()}]} + | #{items := [{field_name(), type()}]} %% Record with named fields represented as a map. Encoded as a list in the given order. | tuple(). %% Any arity, containing type(). This means a static size array. -type encodable_term() :: non_neg_integer()