diff --git a/README.md b/README.md index 2bc898b..7d02229 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ request (10 by default). ![Breakpoints](screenshots/breakpoints.png) A click on any breakpoint will take you to familiar `iex` session with context as it was at execution time. -![Breakpoint Sesssion](screenshots/breakpoint_session.png) +![Breakpoint Session](screenshots/breakpoint_session.png) # Installation diff --git a/lib/ex_debug_toolbar/phoenix.ex b/lib/ex_debug_toolbar/phoenix.ex index fbce4de..1a9ca90 100644 --- a/lib/ex_debug_toolbar/phoenix.ex +++ b/lib/ex_debug_toolbar/phoenix.ex @@ -31,7 +31,7 @@ defmodule ExDebugToolbar.Phoenix do @doc """ Wrapper around app endpoint. After passing connection through toolbar's router we make a decision how to further process it. - Ignoring request in a toolbar works by not emiting `:ex_debug_toolbar` event + Ignoring request in a toolbar works by not emitting `:ex_debug_toolbar` event which creates new request in toolbar. The rest of data collection functions become effectively no-op for ignored requests. """ diff --git a/test/lib/ex_debug_toolbar/decorator/noop_test.exs b/test/lib/ex_debug_toolbar/decorator/noop_test.exs index 03637e9..949ddca 100644 --- a/test/lib/ex_debug_toolbar/decorator/noop_test.exs +++ b/test/lib/ex_debug_toolbar/decorator/noop_test.exs @@ -25,7 +25,7 @@ defmodule ExDebugToolbar.Decorator.NoopTest do end describe "noop_when_toolbar_disabled/1" do - test "does not modify function when toolbar is enalbed" do + test "does not modify function when toolbar is enabled" do Application.put_env(:ex_debug_toolbar, :enable, true) assert :ok = Dummy.toolbar_disabled() end