From cd5c02b024322090acc3ae1d2649084fa5a59f24 Mon Sep 17 00:00:00 2001 From: Matthew Shanley Date: Tue, 12 Mar 2024 22:46:38 -0400 Subject: [PATCH] fix: Fix two small typos in the documentation --- README.md | 2 +- lib/ueberauth/strategy/passwordless.ex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db3335a..18d0d7e 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ end 6. If you haven't already, set up the routes for authentication ```elixir -scrope "/auth" do +scope "/auth" do pipe_through :browser get "/:provider", AuthController, :request diff --git a/lib/ueberauth/strategy/passwordless.ex b/lib/ueberauth/strategy/passwordless.ex index 8152246..20fb450 100644 --- a/lib/ueberauth/strategy/passwordless.ex +++ b/lib/ueberauth/strategy/passwordless.ex @@ -32,7 +32,7 @@ defmodule Ueberauth.Strategy.Passwordless do Ueberauth.plug "/auth" end - scrope "/auth" do + scope "/auth" do pipe_through [:browser, :auth] get "/:provider", AuthController, :request