@@ -59,7 +59,7 @@ Those configuration options are documented below:
59
59
.. versionadded :: 1.3.0
60
60
61
61
Typically this would be the server name, but that doesn’t exist on
62
- all platforms. Instead you may use something like the device ID, as it
62
+ all platforms. Instead, you may use something like the device ID, as it
63
63
indicates the host which the client is running on.
64
64
65
65
.. code-block :: javascript
@@ -83,9 +83,9 @@ Those configuration options are documented below:
83
83
84
84
.. describe :: whitelistUrls
85
85
86
- The inverse of ``ignoreUrls ``. Only report errors from whole urls
86
+ The inverse of ``ignoreUrls ``. Only report errors from whole URLs
87
87
matching a regex pattern or an exact string. ``whitelistUrls `` should
88
- match the url of your actual JavaScript files. It should match the url
88
+ match the URL of your actual JavaScript files. It should match the URL
89
89
of your site if and only if you are inlining code inside ``<script> ``
90
90
tags. Not setting this value is equivalent to a catch-all and will not
91
91
filter out any values.
@@ -115,7 +115,7 @@ Those configuration options are documented below:
115
115
.. describe :: ignoreUrls
116
116
117
117
The inverse of ``whitelistUrls `` and similar to ``ignoreErrors ``, but
118
- will ignore errors from whole urls matching a regex pattern or an
118
+ will ignore errors from whole URLs matching a regex pattern or an
119
119
exact string.
120
120
121
121
.. code-block :: javascript
@@ -126,11 +126,11 @@ Those configuration options are documented below:
126
126
127
127
.. describe :: includePaths
128
128
129
- An array of regex patterns to indicate which urls are a part of your
129
+ An array of regex patterns to indicate which URLs are a part of your
130
130
app in the stack trace. All other frames will appear collapsed inside
131
131
Sentry to make it easier to discern between frames that happened in
132
132
your code vs other code. It'd be suggested to add the current page
133
- url , and the host for your CDN.
133
+ URL , and the host for your CDN.
134
134
135
135
.. code-block :: javascript
136
136
@@ -154,7 +154,7 @@ Those configuration options are documented below:
154
154
An array of strings or regex patterns representing keys that should be scrubbed from the payload sent to Sentry.
155
155
We'll go through every field in the payload and mask the values with simple `******** ` string instead.
156
156
This will match *only * keys of the object, not the values.
157
- Sentry also sanitize all events sent to it on the server-side, but this allows you to strip the payload before it gets to the server.
157
+ Sentry also sanitizes all events sent to it on the server-side, but this allows you to strip the payload before it gets to the server.
158
158
159
159
160
160
.. code-block :: javascript
@@ -245,7 +245,7 @@ Those configuration options are documented below:
245
245
.. describe :: captureUnhandledRejections
246
246
247
247
By default, Raven captures all unhandled promise rejections using standard ``unhandledrejection `` event.
248
- If you want to disable this behaviour , set this option to ``false ``.
248
+ If you want to disable this behavior , set this option to ``false ``.
249
249
250
250
.. describe :: transport
251
251
@@ -310,7 +310,7 @@ Those configuration options are documented below:
310
310
}
311
311
}
312
312
313
- Headers value can be in form of a function, to compute value in time of a request:
313
+ Headers value can be in the form of a function, to the compute value in time of a request:
314
314
315
315
.. code-block :: javascript
316
316
0 commit comments