Skip to content

Commit

Permalink
erlfmt_ast: fix typo text_literal -> text_string (upstream)
Browse files Browse the repository at this point in the history
  • Loading branch information
gomoripeti committed Apr 17, 2021
1 parent 163564d commit 0fe3ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/els_lsp/src/els_erlfmt_ast.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ literal_text(Node) ->
integer -> erl_syntax:integer_literal(Node);
operator -> erl_syntax:operator_literal(Node);
string -> erl_syntax:string_literal(Node);
text -> erl_syntax:text_literal(Node);
text -> erl_syntax:text_string(Node);
variable -> erl_syntax:variable_literal(Node);
_ -> undefined
end.
Expand Down

0 comments on commit 0fe3ab1

Please sign in to comment.