Skip to content

Commit c76d686

Browse files
Apply suggestions from code review
1 parent 63f8c35 commit c76d686

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/connections/sources/catalog/libraries/website/javascript/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The JavaScript console reveals all requests, outbound and inbound, to your brows
7676

7777
## Is there a size limit on requests?
7878

79-
Yes, 32KB per event message. Events with a payload larger than 32KB are accepted by Analytics.js with the browser getting responses `200` from our servers, but the event will be silently dropped once it enters our pipeline.
79+
Yes, 32KB per event message. Events with a payload larger than 32KB are accepted by Analytics.js, with the browser returning a `200` response from the Segment servers, but the event will be silently dropped once it enters Segment's pipeline.
8080

8181
## If Analytics.js fails to load, are callbacks not fired?
8282

@@ -130,7 +130,7 @@ analytics.track("Receipt Viewed", {}, {
130130
```
131131
This works for any [context field](/docs/connections/spec/common/#context) that Segment automatically collects.
132132

133-
When working with Page calls, you can overwrite context fields by following the same instructions above. However, because the `context.page` fields are also available in the `properties` parameter for page calls, you can also prevent the same fields in the `properties` parameter from being included in your Page call. The example below will allow you to overwrite `url` available in context field `page.url` and properties parameter:
133+
When working with Page calls, you can overwrite context fields by following the same instructions above. However, because the `context.page` fields are also available in the `properties` parameter for page calls, you must also prevent the same fields in the `properties` parameter from being included in your Page call. The example below will allow you to overwrite `url` available in context field `page.url` and properties parameter:
134134

135135
```js
136136
analytics.page("Receipt Page", {

0 commit comments

Comments
 (0)