1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-08 01:28:02 +00:00

Add missing language name for code block

This commit is contained in:
jbranchaud
2017-04-13 08:29:16 -05:00
parent 6a34dda04b
commit 4f2684e509

View File

@@ -22,7 +22,7 @@ length of the message queue as we go.
Now, I am curious what those specific messages are. Let's ask Now, I am curious what those specific messages are. Let's ask
`Process.info/2` for the messages that are in the message queue. `Process.info/2` for the messages that are in the message queue.
``` ```elixir
> Process.info(self(), :messages) > Process.info(self(), :messages)
{:messages, [error: "this is bad", hello: "world"]} {:messages, [error: "this is bad", hello: "world"]}
``` ```