Skip to content

Commit 6e9278d

Browse files
authored
Fix typos (#333)
1 parent 6fd935d commit 6e9278d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ The 3.0 version of the bundle uses the newest version (2.x) of the underlying Se
174174

175175
The Sentry 2.0 SDK uses the Unified API, hence it uses the concept of `Scope`s to hold information about the current
176176
state of the app, and attach it to any event that is reported. This bundle has three listeners (`RequestListener`,
177-
`SubRequestListener` and `ConsoleListener`) that adds some easy default information. Since 3.5, a fourth listener has been added to handle the case of Messanger Workers: `MessengerListener`.
177+
`SubRequestListener` and `ConsoleListener`) that adds some easy default information. Since 3.5, a fourth listener has been added to handle the case of Messenger Workers: `MessengerListener`.
178178

179179
Those listeners normally are executed with a priority of `1` to allow easier customization with custom listener, that by
180180
default run with a lower priority of `0`.

UPGRADE-3.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ changed:
3939
* All services are now private; declare public aliases to access them if needed; you can still use the Sentry SDK global
4040
functions if you want just to capture messages manually without injecting Sentry services in your code
4141
* All services uses the full qualified name of their interfaces to name them
42-
* The `ExceptionListener` has been splitted and renamed: we now have a simpler `ErrorListener`, and three other listeners
42+
* The `ExceptionListener` has been split and renamed: we now have a simpler `ErrorListener`, and three other listeners
4343
dedicated to enriching events of data (`RequestListener`, `SubRequestListener` and `ConsoleListener`)
4444
* The listeners are now `final`; append your own listeners to override their behavior
4545
* The `SentrySymfonyEvents::PRE_CAPTURE` and `SentrySymfonyEvents::SET_USER_CONTEXT` events are dropped; if you want to inject data into your events, write your own listener in a similar fashion to `RequestListener`, using the `Hub` and the `Scope` to handle how and when the new information is attached to events
@@ -53,7 +53,7 @@ This is a brief description of the services registered by this bundle:
5353
* `Sentry\State\HubInterface`: this is the central root of the SDK; it's the `Hub` that the bundle will instantiate at
5454
startup, and the current one too if you do not change it
5555
* `Sentry\ClientInterface`: this is the proper client; compared to the 1.x SDK version it's a lot more slimmed down,
56-
since a lot of the stuff has been splitted in separated components, so you probably will not interact with it as much as
56+
since a lot of the stuff has been split in separated components, so you probably will not interact with it as much as
5757
in the past. You also have to remind you that the client is bound to the `Hub`, and has to be changed there if you want
5858
to use a different one automatically in error reporting
5959
* `Sentry\ClientBuilderInterface`: this is the factory that builds the client; you can call its methods to change all

0 commit comments

Comments
 (0)