Skip to content

Commit 0906892

Browse files
authored
Merge pull request #2169 from benjaminhoffman/patch-2
Cleanup & clarity to documentation
2 parents 5615b9f + 9b5ca85 commit 0906892

File tree

1 file changed

+9
-9
lines changed
  • src/connections/sources/catalog/libraries/server/node

1 file changed

+9
-9
lines changed

src/connections/sources/catalog/libraries/server/node/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,18 @@ analytics.identify({
6868
}
6969
});
7070
```
71-
The call below identifies Michael by his unique User ID (the one you know him by in your database), records his associated anonymous ID, and labels him with the `name`, `email`, `plan` and `friends` traits.
71+
The call above identifies Michael by his unique User ID (the one you know him by in your database), and labels him with the `name`, `email`, `plan` and `friends` traits.
7272

7373
The `identify` call has the following fields:
7474

7575
<table class="api-table">
7676
<tr>
7777
<td>`userId` _String, optional_</td>
78-
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any identify call.</td>
78+
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any identify call._</td>
7979
</tr>
8080
<tr>
8181
<td>`anonymousId` _String, optional_</td>
82-
<td>An ID associated with the user when you don't know who they are (for example, [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)) _Note: You must include at least one of `userId` or `anonymousId` in all identify calls.</td>
82+
<td>An ID associated with the user when you don't know who they are (for example, [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)). _Note: You must include at least one of `userId` or `anonymousId` in all identify calls._</td>
8383
</tr>
8484
<tr>
8585
<td>`traits` _Object, optional_</td>
@@ -140,11 +140,11 @@ The `track` call has the following fields:
140140
<table>
141141
<tr>
142142
<td>`userId` _String, optional_</td>
143-
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any track call.</td>
143+
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any track call._</td>
144144
</tr>
145145
<tr>
146146
<td>`anonymousId` _String, optional_</td>
147-
<td>An ID associated with the user when you don't know who they are (for example, [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)) _Note: You must include at least one of `userId` or `anonymousId` in all track calls.</td>
147+
<td>An ID associated with the user when you don't know who they are (for example, [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)). _Note: You must include at least one of `userId` or `anonymousId` in all track calls._</td>
148148
</tr>
149149
<tr>
150150
<td>`event` _String_</td>
@@ -193,11 +193,11 @@ The `page` call has the following fields:
193193
<table>
194194
<tr>
195195
<td>`userId` _String, optional_</td>
196-
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any page call.</td>
196+
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any page call._</td>
197197
</tr>
198198
<tr>
199199
<td>`anonymousId` _String, optional_</td>
200-
<td>An ID to associated with the user when you don't know who they are (eg., [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)) _Note: at least one of `userId` or `anonymousId` must be included in any page call.</td>
200+
<td>An ID associated with the user when you don't know who they are (eg., [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)). _Note: at least one of `userId` or `anonymousId` must be included in any page call._</td>
201201
</tr>
202202
<tr>
203203
<td>`category` _String, optional_</td>
@@ -247,11 +247,11 @@ The `group` call has the following fields:
247247
<table class="api-table">
248248
<tr>
249249
<td>`userId` _String, optional_</td>
250-
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any group call.</td>
250+
<td>The ID for this user in your database. _Note: at least one of `userId` or `anonymousId` must be included in any group call._</td>
251251
</tr>
252252
<tr>
253253
<td>`anonymousId` _String, optional_</td>
254-
<td>An ID to associated with the user when you don't know who they are (eg., [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)) _Note: at least one of `userId` or `anonymousId` must be included in any group call.</td>
254+
<td>An ID associated with the user when you don't know who they are (eg., [the anonymousId generated by `analytics.js`](/docs/connections/sources/catalog/libraries/website/javascript/#anonymous-id)). _Note: at least one of `userId` or `anonymousId` must be included in any group call._</td>
255255
</tr>
256256
<tr>
257257
<td>`groupId` _string</td>

0 commit comments

Comments
 (0)