Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ErrorTracker

En Elixir based built-in error tracking solution.
An Elixir based built-in error tracking solution.

<a href="guides/screenshots/error-dashboard.png">
<img src="guides/screenshots/error-dashboard.png" alt="ErrorTracker web dashboard" width="400">
Expand All @@ -27,7 +27,7 @@ iex -S mix dev

### Assets

In ortder to participate in the development of this library, you may need to
In order to participate in the development of this library, you may need to
know how to compile the assets needed to use the Web UI.

To do so, you need to first make a clean build:
Expand Down
2 changes: 1 addition & 1 deletion lib/error_tracker.ex
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ defmodule ErrorTracker do
You can store context on more than one level of depth, but take into account
that the merge operation is performed on the first level.

That means that any existing data on deep levels fot he current context will
That means that any existing data on deep levels for he current context will
be replaced if the first level key is received on the new contents.
"""
@spec set_context(context()) :: context()
Expand Down
4 changes: 2 additions & 2 deletions lib/error_tracker/integrations/oban.ex
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defmodule ErrorTracker.Integrations.Oban do
By default we store some context for you on errors generated in an Oban
process:

* `job.id`: the unqiue ID of the job.
* `job.id`: the unique ID of the job.

* `job.worker`: the name of the worker module.

Expand All @@ -37,7 +37,7 @@ defmodule ErrorTracker.Integrations.Oban do
]

@doc """
Attachs to Oban's Telemetry events if the library is detected.
Attaches to Oban's Telemetry events if the library is detected.

This function is usually called internally during the startup process so you
don't have to.
Expand Down
2 changes: 1 addition & 1 deletion lib/error_tracker/integrations/phoenix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ defmodule ErrorTracker.Integrations.Phoenix do
]

@doc """
Attachs to Phoenix's Telemetry events if the library is detected.
Attaches to Phoenix's Telemetry events if the library is detected.

This function is usually called internally during the startup process so you
don't have to.
Expand Down