Skip to content

Commit 9767103

Browse files
authored
Fix bad keyword in ng 2 docs not showing user's DSN string (#648)
1 parent 05ebd04 commit 9767103

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/integrations/angular2.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Then, in your main application file (where ``bootstrap`` is called, e.g. main.ts
5858
import { provide, ExceptionHandler } from 'angular2/core';
5959
6060
Raven
61-
.config('__PUBLIC_DSN__')
61+
.config('___PUBLIC_DSN___')
6262
.install();
6363
6464
class RavenExceptionHandler {
@@ -81,5 +81,5 @@ In Webpack and other module loaders, you may need to use the require keyword to
8181
.. code-block:: js
8282
8383
import Raven = require('raven-js');
84-
.config('__PUBLIC_DSN__')
84+
.config('___PUBLIC_DSN___')
8585
.install();

0 commit comments

Comments
 (0)