From c7a151e2049dbc98daff18e42024a6419ac0a339 Mon Sep 17 00:00:00 2001 From: Ryan Rempel Date: Mon, 6 Jul 2015 13:31:37 -0500 Subject: [PATCH] Add reference to defaultOptions in docs. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 13d545a..34c09d8 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,9 @@ type alias Options = , secure : Maybe Bool } ``` + +You can use `defaultOptions` as a starting point, in which all options are set to `Nothing`. + +```elm +defaultOptions : Options +```