Skip to content

Commit 3f4c661

Browse files
stayseesongpwseg
andauthored
Apply suggestions from code review
Co-authored-by: pwseg <[email protected]>
1 parent eeaaf9e commit 3f4c661

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/connections/storage/data-lakes/sync-history.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To access the Sync History page from the Segment app, open the **My Destinations
2323
## Health
2424
The health tab provides an overview of the rows that synced to your data lake both today and each day for the last 30 days.
2525

26-
The bar chart, 'Daily Synced Rows,' shows an overview of the rows synced for each of the last 30 days. Hovering over a date shows the number of rows that were synced for that day. Selecting a date from the bar chart opens the Daily Row Volume table, which provides a breakdown of which collections synced, how many rows from each collection synced, and the percentage of all synced rows from each collection .
26+
The bar chart, 'Daily Synced Rows,' shows an overview of the rows synced for each of the last 30 days. Hovering over a date shows the number of rows that were synced for that day. Selecting a date from the bar chart opens the Daily Row Volume table, which provides a breakdown of which collections synced, how many rows from each collection synced, and the percentage of all synced rows from each collection.
2727

2828
The Daily Row Volume table contains the following information:
2929
* **Collections:** The name of each collection of properties synced to the data lake

src/getting-started/02-simple-install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To create a Segment source:
3838

3939
## Find your write key
4040

41-
The write key is the unique identifier for a source that tells Segment which source data comes from, to which workspace the data belongs to, and which destinations should receive the data.
41+
The write key is the unique identifier for a source that tells Segment which source data comes from, to which workspace the data belongs, and which destinations should receive the data.
4242

4343
To find your write key:
4444
1. Go to **Connections > Sources** and select your source.
@@ -51,7 +51,7 @@ Any time you change a library's settings in the Segment App, the write key regen
5151
![](/docs/connections/images/find_writekey.png)
5252

5353
> info ""
54-
> [Cloud-sources](/docs/connections/sources/about-cloud-sources/) do not have write keys, as they use a token or key from your account with that service. Cloud-sources have other considerations, and aren't part of this tutorial.
54+
> [Cloud-sources](/docs/connections/sources/about-cloud-sources/) do not have write keys, as they use a token or key from your account with that service. Cloud-sources have other considerations and aren't part of this tutorial.
5555
5656
## Installing Segment
5757

@@ -67,7 +67,7 @@ Click a tab below to see the tutorial content for the specific library you chose
6767

6868
### Step 1: Copy the Snippet
6969
<br>
70-
Paste the snippet from the Javascript Source overview page into the `<head>` tag of your site.
70+
Paste the snippet from the JavaScript Source overview page into the `<head>` tag of your site.
7171
<br><br>
7272
That snippet loads Analytics.js onto the page _asynchronously_, so it won't affect your page load speed. Once the snippet runs on your site, you can turn on destinations from the destinations page in your workspace and data starts loading on your site automatically.
7373
<br><br>
@@ -210,15 +210,15 @@ This call identifies Michael by his unique User ID (`f4ca124298`, which is the o
210210
<br>
211211
The `track` method is how you tell Segment about the actions your users are performing in your app. Every action triggers what we call an "event", which can also have associated properties. You can read more about `track` in the [track method reference](/docs/connections/sources/catalog/libraries/mobile/ios#track).
212212
213-
The Segment iOS SDK can automatically track a few important common events, such as **Application Installed**, **Application Updated** and **Application Opened**. You can enable this option during initialization by adding the following lines:
213+
The Segment iOS SDK can automatically track a few important common events, such as **Application Installed**, **Application Updated**, and **Application Opened**. You can enable this option during initialization by adding the following lines:
214214
215215
```objc
216216
SEGAnalyticsConfiguration *configuration = [SEGAnalyticsConfiguration configurationWithWriteKey:@"YOUR_WRITE_KEY"];
217217
configuration.trackApplicationLifecycleEvents = YES;
218218
[SEGAnalytics setupWithConfiguration:configuration];
219219
```
220220
<br>
221-
You should also track events that indicate success in your mobile app, like **Signed Up**, **Item Purchased** or **Article Bookmarked**. Segment recommends that you track a few important events as you can always add more later.
221+
You should also track events that indicate success in your mobile app, like **Signed Up**, **Item Purchased**, or **Article Bookmarked**. Segment recommends that you track a few important events as you can always add more later.
222222
<br><br>
223223
Here's what a `track` call might look like when a user signs up:
224224

@@ -277,7 +277,7 @@ class_alias('Segment', 'Analytics');
277277
Segment::init("YOUR_WRITE_KEY");
278278
```
279279
<br>
280-
4) Replace `YOUR_WRITE_KEY` with the actual write key, which you can find in Segment under your project settings. Otherwise all that data goes straight to `/dev/null`.
280+
4) Replace `YOUR_WRITE_KEY` with the actual write key, which you can find in Segment under your project settings. Otherwise, all that data goes straight to `/dev/null`.
281281
<br><br>
282282
You only need to call `init` once when your php file is requested. All of your files then have access to the same `Analytics` client.
283283

0 commit comments

Comments
 (0)