From c89143933cb375a2bc05942de6497f4d4d49d1a7 Mon Sep 17 00:00:00 2001 From: Aidan Timson Date: Sun, 7 Jun 2020 10:44:06 +0100 Subject: [PATCH] Fix typo (#571) --- docs/data_entry_flow_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data_entry_flow_index.md b/docs/data_entry_flow_index.md index 7392d3d7..9063e4e5 100644 --- a/docs/data_entry_flow_index.md +++ b/docs/data_entry_flow_index.md @@ -124,7 +124,7 @@ class ExampleConfigFlow(data_entry_flow.FlowHandler): return self.async_show_form(step_id="init", data_schema=vol.Schema(data_schema)) ``` -If you'd like to pre-fill data in the form, you have two options. The first is to use the `deafult` parameter. This will both pre-fill the field, and act as the default value in case the user leaves the field empty. +If you'd like to pre-fill data in the form, you have two options. The first is to use the `default` parameter. This will both pre-fill the field, and act as the default value in case the user leaves the field empty. ```python data_schema = {