Skip to content

Commit b925322

Browse files
chore: Fix typos (#9315)
1 parent faf07bb commit b925322

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Additional labels for categorization can be added, and the Sentry SDK team may a
132132
### Pull Requests (PRs)
133133
134134
PRs are merged via `Squash and merge`.
135-
This means that all commits on the branch will be squashed into a single commit, and commited as such onto master.
135+
This means that all commits on the branch will be squashed into a single commit, and committed as such onto master.
136136
137137
* The PR name can generally follow the commit name (e.g. `feat(core): Set custom transaction source for event processors`)
138138
* Make sure to rebase the branch on `master` before squashing it

MIGRATION.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Sentry.init({
100100

101101
## Replay options changed (since 7.35.0) - #6645
102102

103-
Some options for replay have been depracted in favor of new APIs.
103+
Some options for replay have been deprecated in favor of new APIs.
104104
See [Replay Migration docs](./packages/replay/MIGRATION.md#upgrading-replay-from-7340-to-7350) for details.
105105

106106
## Renaming of Next.js wrapper methods (since 7.31.0) - #6790
@@ -162,7 +162,7 @@ Running the new SDK version on Node.js v6 is therefore highly discouraged.
162162

163163
## Removal of `@sentry/minimal`
164164

165-
The `@sentry/minimal` package was deleted and it's functionality was moved to `@sentry/hub`. All exports from `@sentry/minimal` should be avaliable in `@sentry/hub` other than `_callOnClient` function which was removed.
165+
The `@sentry/minimal` package was deleted and it's functionality was moved to `@sentry/hub`. All exports from `@sentry/minimal` should be available in `@sentry/hub` other than `_callOnClient` function which was removed.
166166

167167
```ts
168168
// New in v7:
@@ -184,7 +184,7 @@ import {
184184

185185
## Explicit Client Options
186186

187-
In v7, we've updated the `Client` to have options seperate from the options passed into `Sentry.init`. This means that constructing a client now requires 3 options: `integrations`, `transport` and `stackParser`. These can be customized as you see fit.
187+
In v7, we've updated the `Client` to have options separate from the options passed into `Sentry.init`. This means that constructing a client now requires 3 options: `integrations`, `transport` and `stackParser`. These can be customized as you see fit.
188188

189189
```ts
190190
import { BrowserClient, defaultStackParser, defaultIntegrations, makeFetchTransport } from '@sentry/browser';
@@ -764,7 +764,7 @@ this case is the `event_id`, in case the event will not be sent because of filte
764764
In `4.x` we had both `close` and `flush` on the `Client` draining the internal queue of events, helpful when you were
765765
using `@sentry/node` on a serverless infrastructure.
766766

767-
Now `close` and `flush` work similar, with the difference that if you call `close` in addition to returing a `Promise`
767+
Now `close` and `flush` work similar, with the difference that if you call `close` in addition to returning a `Promise`
768768
that you can await it also **disables** the client so it will not send any future events.
769769

770770
# Migrating from `raven-js` to `@sentry/browser`

0 commit comments

Comments
 (0)