Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  stdlib: Correct erl_id_trans
  • Loading branch information
uabboli committed Mar 16, 2021
2 parents ee242da + e7a0b57 commit d0adb15
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/stdlib/examples/erl_id_trans.erl
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,8 @@ type({atom,Anno,A}) ->
{atom,Anno,A};
type({integer,Anno,I}) ->
{integer,Anno,I};
type({char,Anno,C}) ->
{char,Anno,C};
type({op,Anno,Op,T}) ->
T1 = type(T),
{op,Anno,Op,T1};
Expand Down

0 comments on commit d0adb15

Please sign in to comment.