From cad2f2f07502b2b890bd0051fc5e2a7feb9b4cba Mon Sep 17 00:00:00 2001 From: Rebecca Le <543859+sevenseacat@users.noreply.github.com> Date: Sun, 3 Nov 2024 17:31:04 +0800 Subject: [PATCH] chore: Fix typo "pipline" -> "pipeline" (#139) --- lib/igniter/libs/phoenix.ex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/igniter/libs/phoenix.ex b/lib/igniter/libs/phoenix.ex index 106bd64..8878fc1 100644 --- a/lib/igniter/libs/phoenix.ex +++ b/lib/igniter/libs/phoenix.ex @@ -297,7 +297,7 @@ defmodule Igniter.Libs.Phoenix do :error -> {:warning, Igniter.Util.Warning.formatted_warning( - "Could not add the #{name} pipline to your router. Please add it manually.", + "Could not add the #{name} pipeline to your router. Please add it manually.", pipeline_code )} end @@ -310,7 +310,7 @@ defmodule Igniter.Libs.Phoenix do :error -> {:warning, Igniter.Util.Warning.formatted_warning( - "Could not add the #{name} pipline to your router. Please add it manually.", + "Could not add the #{name} pipeline to your router. Please add it manually.", pipeline_code )} end @@ -320,7 +320,7 @@ defmodule Igniter.Libs.Phoenix do Igniter.add_warning( igniter, Igniter.Util.Warning.formatted_warning( - "Could not append the following contents to the #{name} pipline to your router. Please add it manually.", + "Could not append the following contents to the #{name} pipeline to your router. Please add it manually.", contents ) ) @@ -381,7 +381,7 @@ defmodule Igniter.Libs.Phoenix do :error -> {:warning, Igniter.Util.Warning.formatted_warning( - "Could not add the #{name} pipline to your router. Please add it manually.", + "Could not add the #{name} pipeline to your router. Please add it manually.", pipeline_code )} end @@ -391,7 +391,7 @@ defmodule Igniter.Libs.Phoenix do Igniter.add_warning( igniter, Igniter.Util.Warning.formatted_warning( - "Could not add the #{name} pipline to your router. Please add it manually.", + "Could not add the #{name} pipeline to your router. Please add it manually.", pipeline_code ) )