From 4a253a714385cbe64b2bdfb88e1c29ed345b92ba Mon Sep 17 00:00:00 2001 From: Krapaince Date: Fri, 8 Nov 2024 10:34:37 +0100 Subject: [PATCH] Fix split_quoted_strings's spec. --- lib/ewebmachine/core.utils.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ewebmachine/core.utils.ex b/lib/ewebmachine/core.utils.ex index 258d0a4..f94f7d4 100644 --- a/lib/ewebmachine/core.utils.ex +++ b/lib/ewebmachine/core.utils.ex @@ -82,7 +82,7 @@ defmodule Ewebmachine.Core.Utils do @doc """ Get the string list from a comma separated list of HTTP quoted strings """ - @spec split_quoted_strings([String.t]) :: [String.t] + @spec split_quoted_strings(String.t) :: [String.t] def split_quoted_strings(str) do str |> Plug.Conn.Utils.list() |>