Skip to content

Commit ed589c9

Browse files
authored
Update index.md
removing auto formatting
1 parent 2616592 commit ed589c9

File tree

1 file changed

+6
-6
lines changed
  • src/connections/destinations/catalog/bucket

1 file changed

+6
-6
lines changed

src/connections/destinations/catalog/bucket/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ This destination is maintained by Bucket. For any issues with the destination, [
2323
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
2424

2525
```js
26-
analytics.identify("userId123", {
27-
name: "John Doe",
28-
26+
analytics.identify('userId123', {
27+
name: 'John Doe',
28+
2929
});
3030
```
3131

@@ -36,8 +36,8 @@ Segment sends Identify calls to Bucket as an `identify` event which updates User
3636
If you aren't familiar with the Segment Spec, take a look at the [Group method documentation](/docs/connections/spec/group/) to learn about what it does. An example call would look like:
3737

3838
```js
39-
analytics.identify("groupId123", {
40-
name: "Acme, Inc",
39+
analytics.identify('groupId123', {
40+
name: 'Acme, Inc',
4141
});
4242
```
4343

@@ -48,7 +48,7 @@ Segment sends Group calls to Bucket as a `group` event which updates Company pro
4848
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](/docs/connections/spec/track/) to learn about what it does. An example call would look like:
4949

5050
```js
51-
analytics.track("Login Button Clicked", {});
51+
analytics.track('Login Button Clicked', {});
5252
```
5353

5454
Segment sends Track calls to Bucket as a `track` event which updates the Features page.

0 commit comments

Comments
 (0)