From 8c7d46717c48b4e5572de6771276f190fa4da4d9 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Sun, 24 Feb 2019 18:05:49 -0800 Subject: [PATCH] Missing t :) --- docs/auth_auth_module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/auth_auth_module.md b/docs/auth_auth_module.md index 80c9b429..4cdd049a 100644 --- a/docs/auth_auth_module.md +++ b/docs/auth_auth_module.md @@ -8,7 +8,7 @@ Multi-factor Authentication Modules are used in conjunction with [Authentication > We currently only support built-in mfa auth modules. Support for custom auth modules might arrive in the future. -Multi-facor Auth modules are defined in `homeassistant/auth/mfa_modules/.py`. The auth module will need to provide an implementation of the `MultiFactorAuthModule` class. +Multi-factor Auth modules are defined in `homeassistant/auth/mfa_modules/.py`. The auth module will need to provide an implementation of the `MultiFactorAuthModule` class. For an example of a fully implemented auth module, please see [insecure_example.py](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/auth/mfa_modules/insecure_example.py).