Skip to content

Commit 8cc2e84

Browse files
authored
Fix typos on documentation (#24)
Found via `typos --hidden --format brief`
1 parent 2d9f89a commit 8cc2e84

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ErrorTracker
22

3-
En Elixir based built-in error tracking solution.
3+
An Elixir based built-in error tracking solution.
44

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

2828
### Assets
2929

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

3333
To do so, you need to first make a clean build:

lib/error_tracker.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ defmodule ErrorTracker do
161161
You can store context on more than one level of depth, but take into account
162162
that the merge operation is performed on the first level.
163163
164-
That means that any existing data on deep levels fot he current context will
164+
That means that any existing data on deep levels for he current context will
165165
be replaced if the first level key is received on the new contents.
166166
"""
167167
@spec set_context(context()) :: context()

lib/error_tracker/integrations/oban.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ defmodule ErrorTracker.Integrations.Oban do
1717
By default we store some context for you on errors generated in an Oban
1818
process:
1919
20-
* `job.id`: the unqiue ID of the job.
20+
* `job.id`: the unique ID of the job.
2121
2222
* `job.worker`: the name of the worker module.
2323
@@ -37,7 +37,7 @@ defmodule ErrorTracker.Integrations.Oban do
3737
]
3838

3939
@doc """
40-
Attachs to Oban's Telemetry events if the library is detected.
40+
Attaches to Oban's Telemetry events if the library is detected.
4141
4242
This function is usually called internally during the startup process so you
4343
don't have to.

lib/error_tracker/integrations/phoenix.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ defmodule ErrorTracker.Integrations.Phoenix do
6464
]
6565

6666
@doc """
67-
Attachs to Phoenix's Telemetry events if the library is detected.
67+
Attaches to Phoenix's Telemetry events if the library is detected.
6868
6969
This function is usually called internally during the startup process so you
7070
don't have to.

0 commit comments

Comments
 (0)