Skip to content

Commit 0f049fb

Browse files
committed
style guide + formatting fixes
1 parent c7aa390 commit 0f049fb

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

src/connections/auto-instrumentation/web-setup.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -196,15 +196,12 @@ After integrating the SDK and running your app, verify that Segment is collectin
196196

197197
1. In your Segment workspace, return to **Connections > Sources**, then select the source you created for Auto-Instrumentation.
198198
2. In the source overview, look for the **Event Builder** tab. If the tab doesn’t appear:
199-
200-
- Make sure you've installed the SDK correctly.
201-
- Reach out to your Segment CSM to confirm that your workspace has the necessary feature flags enabled.
202-
![The Event Builder tab shown in the navigation bar between Debugger and Schema in a Segment Source](images/event_builder_tab.png)
199+
- Make sure you've installed the SDK correctly.
200+
- Reach out to your Segment CSM to confirm that your workspace has the necessary feature flags enabled.
201+
![The Event Builder tab shown in the navigation bar between Debugger and Schema in a Segment Source](images/event_builder_tab.png)
203202

204203
3. Open the **Event Builder** and follow the on-screen instructions to start signal detection.
205-
206-
- To collect signals in the UI, visit your site in a browser using the query string:`?segment_signals_debug=true`
207-
204+
- To collect signals in the UI, visit your site in a browser using the query string:`?segment_signals_debug=true`
208205
4. Interact with your app to trigger signals: click buttons, navigate pages, submit forms, and so on. Segment collects and displays these as signals in real time.
209206
5. From the signals list, click **Configure event** to define a new event based on one or more signals. After configuring the event, click **Publish event rules**.
210207

@@ -276,7 +273,7 @@ analytics.register(signalsPlugin);
276273

277274
#### Sandbox Strategies
278275

279-
If getting CSP errors, you can use the experimental 'global' sandbox strategy:
276+
If you get CSP errors, you can use the experimental 'global' sandbox strategy:
280277

281278
```ts
282279
new SignalsPlugin({ sandboxStrategy: "global" });
@@ -304,7 +301,7 @@ Auto-Instrumentation collects different types of signals automatically:
304301

305302
### `interaction`
306303

307-
Interaction signals emit in response to a user interaction (clicks, form submissions, etc.)
304+
Interaction signals emit in response to a user interaction (like clicks or form submissions)
308305

309306
### `instrumentation`
310307

@@ -321,7 +318,7 @@ Navigation signals emit whenever the URL changes.
321318
Network signals emit when an HTTP Request is made, or an HTTP Response is received. To emit a network signal, the network activity must have the following requirements:
322319

323320
- Initiated using the `fetch` API
324-
- First party domain (e.g if on `foo.com`, then `foo.com/api/products`, but not `bar.com/api/products`)
321+
- First party domain (for example, if on `foo.com`, then `foo.com/api/products`, but not `bar.com/api/products`)
325322
- Contains the content-type: `application/json`
326323

327324
## Next steps

0 commit comments

Comments
 (0)