From 4f2684e5096cf1315c0819bc787ceb1407b20cbe Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 13 Apr 2017 08:29:16 -0500 Subject: [PATCH] Add missing language name for code block --- elixir/inspecting-the-process-message-queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/inspecting-the-process-message-queue.md b/elixir/inspecting-the-process-message-queue.md index 4b1d317..47ef982 100644 --- a/elixir/inspecting-the-process-message-queue.md +++ b/elixir/inspecting-the-process-message-queue.md @@ -22,7 +22,7 @@ length of the message queue as we go. Now, I am curious what those specific messages are. Let's ask `Process.info/2` for the messages that are in the message queue. -``` +```elixir > Process.info(self(), :messages) {:messages, [error: "this is bad", hello: "world"]} ```