From d2919a901273d9a5dd8d0c0a79f44f80a2b9f360 Mon Sep 17 00:00:00 2001 From: Glutexo Date: Sat, 4 Nov 2023 19:46:18 +0100 Subject: [PATCH] Declare @impl explicitly It is considered a good practice to mark the concrete behavior that a method belongs to. --- lib/onigumo/downloader.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/onigumo/downloader.ex b/lib/onigumo/downloader.ex index 326bb84..bf9ddf7 100644 --- a/lib/onigumo/downloader.ex +++ b/lib/onigumo/downloader.ex @@ -4,7 +4,7 @@ defmodule Onigumo.Downloader do """ @behaviour Onigumo.Component - @impl true + @impl Onigumo.Component def main(root_path) do http_client().start()