From fdd9effb6166b64fe6a3ef5a831a065fe65ea07e Mon Sep 17 00:00:00 2001 From: Wojtek Mach Date: Thu, 11 Apr 2024 09:47:09 +0200 Subject: [PATCH] Fix warning --- lib/ex_doc/formatter/html.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ex_doc/formatter/html.ex b/lib/ex_doc/formatter/html.ex index 230892152..105fb826b 100644 --- a/lib/ex_doc/formatter/html.ex +++ b/lib/ex_doc/formatter/html.ex @@ -249,7 +249,7 @@ defmodule ExDoc.Formatter.HTML do html = Templates.extra_template(config, node, extra_type(extension), nodes_map, refs) if File.regular?(output) do - Utils.warn("warning: file #{Path.relative_to_cwd(output)} already exists", []) + Utils.warn("file #{Path.relative_to_cwd(output)} already exists", []) end File.write!(output, html)