From 0007b6c43521fe873610b1cf8d90e2781c166eb3 Mon Sep 17 00:00:00 2001 From: Tangui <29804907+tanguilp@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:35:06 +0300 Subject: [PATCH] Fix typo in exception message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: José Valim --- lib/phoenix/endpoint/supervisor.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/phoenix/endpoint/supervisor.ex b/lib/phoenix/endpoint/supervisor.ex index fc1ce37183..6c7d1819d6 100644 --- a/lib/phoenix/endpoint/supervisor.ex +++ b/lib/phoenix/endpoint/supervisor.ex @@ -152,7 +152,7 @@ defmodule Phoenix.Endpoint.Supervisor do if check_origin == false and check_csrf == false do raise ArgumentError, - "One of :check_origin and :check_csrf must be set to non-false value for " <> + "one of :check_origin and :check_csrf must be set to non-false value for " <> "transport #{inspect(transport)}" end end