Skip to content

Commit 839326f

Browse files
lobsterkatieHazAT
authored andcommitted
fix: typos in docblock (getsentry#1678)
1 parent 65965ff commit 839326f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/browser/src/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const defaultIntegrations = [
3838
* import { configureScope } from '@sentry/browser';
3939
* configureScope((scope: Scope) => {
4040
* scope.setExtra({ battery: 0.7 });
41-
* scope.setTags({ user_mode: 'admin' });
41+
* scope.setTag({ user_mode: 'admin' });
4242
* scope.setUser({ id: '4711' });
4343
* });
4444
*

packages/node/src/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const defaultIntegrations = [
4040
* const { configureScope } = require('@sentry/node');
4141
* configureScope((scope: Scope) => {
4242
* scope.setExtra({ battery: 0.7 });
43-
* scope.setTags({ user_mode: 'admin' });
43+
* scope.setTag({ user_mode: 'admin' });
4444
* scope.setUser({ id: '4711' });
4545
* });
4646
*

0 commit comments

Comments
 (0)