From 27e2438deb7215161ecfd56cf795061c1a094f44 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 2 Jul 2016 16:40:16 -0500 Subject: [PATCH] Ensure elixir is the syntax highlighted language --- elixir/pattern-matching-in-anonymous-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/pattern-matching-in-anonymous-functions.md b/elixir/pattern-matching-in-anonymous-functions.md index db68b7d..c2c41a1 100644 --- a/elixir/pattern-matching-in-anonymous-functions.md +++ b/elixir/pattern-matching-in-anonymous-functions.md @@ -7,7 +7,7 @@ different behaviors. Here is an example of how you might use this: -```ex +```elixir > handle_result = fn {:ok, result} -> IO.puts "The result is #{result}" :error -> IO.puts "Error: couldn't find anything"