Skip to content

Commit c131874

Browse files
authored
docs: Fix typos (#3716)
inital -> initial
1 parent 4516379 commit c131874

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
## 6.4.0
7373

74-
- [core] feat: initalScope in SDK Options (#3544)
74+
- [core] feat: initialScope in SDK Options (#3544)
7575
- [node] feat: Release Health for Node (Session Aggregates) (#3319)
7676
- [node] feat: Autoload Database Integrations in Node environment (#3483)
7777
- [react] feat: Add support for React 17 Error Boundaries (#3532)

packages/browser/test/unit/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,14 @@ describe('SentryBrowser initialization', () => {
184184
expect(global.__SENTRY__.hub._stack[0].scope._tags).to.deep.equal({ a: 'b' });
185185
});
186186

187-
it('should use initalScope Scope', () => {
187+
it('should use initialScope Scope', () => {
188188
const scope = new Scope();
189189
scope.setTags({ a: 'b' });
190190
init({ dsn, initialScope: scope });
191191
expect(global.__SENTRY__.hub._stack[0].scope._tags).to.deep.equal({ a: 'b' });
192192
});
193193

194-
it('should use initalScope callback', () => {
194+
it('should use initialScope callback', () => {
195195
init({
196196
dsn,
197197
initialScope: scope => {

packages/types/src/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export interface Options {
133133
autoSessionTracking?: boolean;
134134

135135
/**
136-
* Set data to the inital scope
136+
* Initial data to populate scope.
137137
*/
138138
initialScope?: CaptureContext;
139139

0 commit comments

Comments
 (0)