From 0c1aa760eb3c851100ff22413d013b32664ee9f0 Mon Sep 17 00:00:00 2001 From: Egor Mihnevich Date: Tue, 15 Aug 2023 12:32:12 +0200 Subject: [PATCH] Update debug_functions.md to include dbg Part of https://github.com/exercism/elixir-analyzer/issues/368 --- analyzer-comments/elixir/solution/debug_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyzer-comments/elixir/solution/debug_functions.md b/analyzer-comments/elixir/solution/debug_functions.md index aabef96a0..62196eca0 100644 --- a/analyzer-comments/elixir/solution/debug_functions.md +++ b/analyzer-comments/elixir/solution/debug_functions.md @@ -1,3 +1,3 @@ # debug functions -`IO.inspect` is very useful as a debugging tool during development, but don't forget to remove it before finalizing your solution. +Both `IO.inspect` and `Kernel.dbg` are very useful debugging tools, but don't forget to remove them before finalizing your solution.