From c040a99792f35520f22f2b6ecb4c58bedecad8cc Mon Sep 17 00:00:00 2001 From: Vincent Siliakus Date: Sat, 8 Feb 2014 10:55:31 +0100 Subject: [PATCH] switched to new default argument operator --- lib/markdown.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/markdown.ex b/lib/markdown.ex index 93865f5..7766a14 100644 --- a/lib/markdown.ex +++ b/lib/markdown.ex @@ -29,7 +29,7 @@ defmodule Markdown do """ @spec to_html(doc :: String.t) :: String.t @spec to_html(doc :: String.t, options :: Keyword.t) :: String.t - def to_html(doc, options // []) + def to_html(doc, options \\ []) def to_html(_, _) do exit(:nif_library_not_loaded)