File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ defmodule Macro do
193
193
194
194
@ doc false
195
195
def pipe_warning ( { call , _ , _ } ) when call in unquote ( @ unary_ops ) do
196
- "piping into a unary operator is deprecated. You could use e.g. Kernel.+(5) instead of +5. "
196
+ "piping into a unary operator is deprecated. You could use e.g. Kernel.+(5) instead of +5"
197
197
end
198
198
def pipe_warning ( _ ) , do: nil
199
199
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ defmodule Mix.Dep.Lock do
67
67
defp assert_no_merge_conflicts_in_lockfile ( lockfile , info ) do
68
68
if String . contains? ( info , ~w( <<<<<<< ======= >>>>>>>) ) do
69
69
Mix . raise "Your #{ lockfile } contains merge conflicts. Please resolve the conflicts " <>
70
- "and run the command again. "
70
+ "and run the command again"
71
71
end
72
72
end
73
73
end
You can’t perform that action at this time.
0 commit comments