You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/variance/index.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,29 +27,29 @@ Variance supports the following methods of the [Segment Spec](/docs/connections/
27
27
28
28
### Page
29
29
30
-
Send [Page](/docs/connections/spec/page) calls to *ADD WHAT PAGE CALLS ARE USED FOR HERE*. For example:
30
+
If you aren't familiar with the Segment Spec, take a look at the [Page method documentation](https://segment.com/docs/connections/spec/page/)to learn about what it does. An example call would look like:
31
31
32
32
```js
33
33
analytics.page()
34
34
```
35
35
36
-
Segment sends Page calls to Variance as a `Page` Event Type.
36
+
Segment sends Page calls to Variance as a `Page` Event Type.
37
37
38
38
39
39
### Screen
40
40
41
-
Send [Screen](/docs/connections/spec/screen) calls to *ADD WHAT SCREEN CALLS ARE USED FOR HERE*. For example:
41
+
If you aren't familiar with the Segment Spec, take a look at the [Screen method documentation](https://segment.com/docs/connections/spec/screen/)to learn about what it does. An example call would look like:
42
42
43
43
```obj-c
44
44
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
45
45
```
46
46
47
-
Segment sends Screen calls to Variance as a `Screen` Event Type.
47
+
Segment sends Screen calls to Variance as a `Screen` Event Type.
48
48
49
49
50
50
### Identify
51
51
52
-
Send [Identify](/docs/connections/spec/identify) calls to *ADD WHAT IDENTIFY CALLS ARE USED FOR HERE*. For example:
52
+
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
53
53
54
54
```js
55
55
analytics.identify('userId123', {
@@ -62,7 +62,7 @@ Segment sends Identify calls to Variance as a `Contact`.
62
62
63
63
### Track
64
64
65
-
Send [Track](/docs/connections/spec/track) calls to *ADD WHAT Track CALLS ARE USED FOR HERE*. For example:
65
+
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/)to learn about what it does. An example call would look like:
0 commit comments