Skip to content

Commit c685f85

Browse files
committed
check grammar
1 parent d9e1760 commit c685f85

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

articles/stream-analytics/cicd-tools.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The *build* command does a keyword syntax check and generates Azure Resource Man
3939
| Argument | Description |
4040
|---|---|
4141
| `--project` | Specify the **asaproj.json** file using absolute or relative path. |
42-
| `--outputPath` | Specify the output folder for storing ARM Templates using absolute or relative path. If `outputPath` is not specified, the templates will be placed in the current directory. |
42+
| `--outputPath` | Specify the output folder for storing ARM Templates using absolute or relative path. If `outputPath` isn't specified, the templates are placed in the current directory. |
4343

4444
**Example**:
4545

@@ -51,14 +51,14 @@ cd <path-to-the-project>
5151
azure-streamanalytics-cicd build --v2 --project ./asaproj.json --outputPath ./Deploy
5252
```
5353

54-
If the project is built successfully, you see 2 JSON files created under the output folder:
54+
If the project is built successfully, you see two JSON files created under the output folder:
5555

5656
* ARM template file: `[ProjectName].JobTemplate.json`
5757
* ARM parameter file: `[ProjectName].JobTemplate.parameters.json`
5858

5959
The default values for **parameters.json** file come from your project settings. If you want to deploy to another environment, replace the values accordingly.
6060

61-
The default values for all credentials are **null**. You are required to set the values before you deploy to Azure.
61+
The default values for all credentials are **null**. You're required to set the values before you deploy to Azure.
6262

6363
```json
6464
"Input_EntryStream_sharedAccessPolicyKey": {
@@ -78,8 +78,8 @@ azure-streamanalytics-cicd localrun -project <projectFullPath> [-outputPath <out
7878
| Argument | Description |
7979
|---|---|
8080
| `--project` | Specify the **asaproj.json** file using absolute or relative path. |
81-
| `--outputPath` | Specify the output folder for storing ARM Templates using absolute or relative path. If `outputPath` is not specified, the templates will be placed in the current directory. |
82-
| `--customCodeZipFilePath` | The path of the zip file for C# custom code, such as a UDF or deserializer, if they are used. Package the DLLs into a zip file and specify this path. |
81+
| `--outputPath` | Specify the output folder for storing ARM Templates using absolute or relative path. If `outputPath` isn't specified, the templates are placed in the current directory. |
82+
| `--customCodeZipFilePath` | The path of the zip file for C# custom code, such as a UDF or deserializer, if they're used. Package the DLLs into a zip file and specify this path. |
8383

8484
**Example**:
8585

@@ -109,7 +109,7 @@ You can find the test cases in the test configuration file.
109109
| Argument | Description |
110110
|---|---|
111111
| `--project` | Specify the **asaproj.json** file using absolute or relative path. |
112-
| `--testConfigPath` | The path of the test configuration file. If it is not specified, the file will be searched in **\test** under the current directory of the **asaproj.json** file, with default file name **testConfig.json**. A new file will be created if not existed. |
112+
| `--testConfigPath` | The path of the test configuration file. If it isn't specified, the file is searched in **\test** under the current directory of the **asaproj.json** file, with default file name **testConfig.json**. A new file is created if not existed. |
113113

114114
**Example**:
115115

@@ -164,9 +164,9 @@ azure-streamanalytics-cicd test --project <projectFullPath> [--testConfigPath <t
164164
| Argument | Description |
165165
|---|---|
166166
| `--project` | The path of the **asaproj.json** file. |
167-
| `--testConfigPath` | The path to the test configuration file. If it is not specified, the file will be searched in **\test** under the current directory of the **asaproj.json** file, with default file name **testConfig.json**.
168-
| `--outputPath` | The path of the test result output folder. If it is not specified, the output result files will be placed in the current directory. |
169-
| `--customCodeZipFilePath` | The path of the zip file for custom code such as a UDF or deserializer, if they are used. You need to package the DLLs to zip file and specify the path. |
167+
| `--testConfigPath` | The path to the test configuration file. If it isn't specified, the file is searched in **\test** under the current directory of the **asaproj.json** file, with default file name **testConfig.json**.
168+
| `--outputPath` | The path of the test result output folder. If it isn't specified, the output result files are placed in the current directory. |
169+
| `--customCodeZipFilePath` | The path of the zip file for custom code such as a UDF or deserializer, if they're used. You need to package the DLLs to zip file and specify the path. |
170170

171171
If test cases are executed, you can find a **testResultSummary.json** file generated in the output folder.
172172

articles/stream-analytics/quick-start-build-application.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ms.topic: quickstart
1212

1313
Analyzing clickstream data is an effective way for businesses to optimize website traffic and gain insights into user behavior. This quickstart outlines how you can build a streaming application for analyzing website clickstream data.
1414

15-
The method outlined in this guide uses a PowerShell script to deploy Azure resources with auto-generated sample data streams. The auto-generated data enables exploring various stream analytic scenarios and helps you deploy Azure resources effortlessly.
15+
The method outlined in this guide uses a PowerShell script to deploy Azure resources with autogenerated sample data streams. The autogenerated data enables exploring various stream analytic scenarios and helps you deploy Azure resources effortlessly.
1616

17-
Here're the typical scenarios for processing and analyzing clickstream:
17+
Here are the typical scenarios for processing and analyzing clickstream:
1818
- Filter clickstream requests
1919
- Join clickstream with a file
2020

@@ -48,7 +48,7 @@ Sample of a website clickstream:
4848
}
4949
```
5050

51-
We will be using the scripts available in the [GitHub repository](https://github.com/Azure/azure-stream-analytics) for deploying our required resources:
51+
We'll be using the scripts available in the [GitHub repository](https://github.com/Azure/azure-stream-analytics) for deploying our required resources:
5252

5353
1. Open **PowerShell** from the Start menu, clone this GitHub repository to your working directory.
5454

0 commit comments

Comments
 (0)