Skip to content

Commit

Permalink
Fixed typo: introspect (phoenixframework#3810)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfran authored May 1, 2020
1 parent 08bc4ee commit aac7927
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/plug.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Pretty simple, right? Let's see this function in action by adding it to our endp
defmodule HelloWeb.Endpoint do
...

plug :instrospect
plug :introspect
plug HelloWeb.Router

def introspect(conn, _opts) do
Expand Down Expand Up @@ -134,7 +134,7 @@ Endpoints organize all the plugs common to every request, and apply them before
defmodule HelloWeb.Endpoint do
...

plug :instrospect
plug :introspect
plug HelloWeb.Router
```

Expand Down

0 comments on commit aac7927

Please sign in to comment.