From 51f8a81cd9d0d6707ab50e6665c17ccc643a8843 Mon Sep 17 00:00:00 2001 From: Nathan Youngman Date: Wed, 19 Jun 2024 15:04:05 -0600 Subject: [PATCH] warning: negative steps are not supported in String.slice/2, pass 1..-1//1 instead --- lib/httparrot/p_handler.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/httparrot/p_handler.ex b/lib/httparrot/p_handler.ex index 57983ef..7354762 100644 --- a/lib/httparrot/p_handler.ex +++ b/lib/httparrot/p_handler.ex @@ -13,7 +13,7 @@ defmodule HTTParrot.PHandler do """ def allowed_methods(req, state) do path = :cowboy_req.path(req) - path = String.slice(path, 1..-1) + path = String.slice(path, 1..-1//1) {[String.upcase(path)], req, state} end