Skip to content

Commit

Permalink
Remove extra space (#12894)
Browse files Browse the repository at this point in the history
  • Loading branch information
afloram committed Aug 28, 2023
1 parent 518a7f9 commit 9321f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elixir/src/elixir_fn.erl
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ format_error({block_expr_in_capture, Expr}) ->
['Elixir.Macro':to_string(Expr)]);
format_error({nested_capture, Arg}) ->
io_lib:format("nested captures are not allowed. You cannot define a function using "
" the capture operator & inside another function defined via &. Got invalid nested "
"the capture operator & inside another function defined via &. Got invalid nested "
"capture: ~ts", ['Elixir.Macro':to_string(Arg)]);
format_error({invalid_arity_for_capture, Arity}) ->
io_lib:format("capture argument &~B must be numbered between 1 and 255", [Arity]);
Expand Down

0 comments on commit 9321f2f

Please sign in to comment.