diff options
author | soulna <jiangranye@outlook.com> | 2022-04-18 20:04:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 20:04:34 +0800 |
commit | b85be0b573867e09c60cd0fcefb43bfc56e1ae83 (patch) | |
tree | 00707e901541cb757959a1698910db13166df4d5 /lib/syntax_tools | |
parent | 23ba29d5d84cc0c271bfbee5bc2aa12dc3acb780 (diff) | |
download | erlang-b85be0b573867e09c60cd0fcefb43bfc56e1ae83.tar.gz |
remove extra argument
Diffstat (limited to 'lib/syntax_tools')
-rw-r--r-- | lib/syntax_tools/src/merl.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/syntax_tools/src/merl.erl b/lib/syntax_tools/src/merl.erl index 97ef68ce4c..28cd1283e9 100644 --- a/lib/syntax_tools/src/merl.erl +++ b/lib/syntax_tools/src/merl.erl @@ -467,7 +467,7 @@ quote(Text) -> %% @doc Parse text. Takes an initial scanner starting position as first %% argument. %% -%% The macro `?Q(Text)' expands to `merl:quote(?LINE, Text, Env)'. +%% The macro `?Q(Text)' expands to `merl:quote(?LINE, Text)'. %% %% @see quote/1 |