From a8c42e13b9ce3a07c7d57e68d7af5cf0d2d83e3c Mon Sep 17 00:00:00 2001 From: Andrew Dryga Date: Wed, 22 Feb 2023 11:38:51 -0600 Subject: [PATCH] Fix typo --- apps/fz_http/lib/fz_http/config/errors.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fz_http/lib/fz_http/config/errors.ex b/apps/fz_http/lib/fz_http/config/errors.ex index 9c0623110..430138f5f 100644 --- a/apps/fz_http/lib/fz_http/config/errors.ex +++ b/apps/fz_http/lib/fz_http/config/errors.ex @@ -92,7 +92,7 @@ defmodule FzHttp.Config.Errors do def legacy_key_used(key, legacy_key, removed_at) do Logger.warn( - "A legacy configuration option '#{legacy_key}' is used and it will be removed in v#{removed_at}." <> + "A legacy configuration option '#{legacy_key}' is used and it will be removed in v#{removed_at}. " <> "Please use '#{key}' configuration option instead." ) end