Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/ex_debug_toolbar/phoenix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down
2 changes: 1 addition & 1 deletion test/lib/ex_debug_toolbar/decorator/noop_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down