Skip to content

Commit 01fff6e

Browse files
committed
Fixing errors
1 parent 58b2db5 commit 01fff6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/automation/automation-first-runbook-textual-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Start by creating a simple runbook that outputs the text `Hello World`.
5050
2. Select **Runbooks** under **Process Automation** to open the list of runbooks.
5151
3. Create a new runbook by selecting **Create a runbook**.
5252
4. Give the runbook the name **MyFirstRunbook-PowerShell**.
53-
5. In this case, you're going to create a [PowerShell runbook](automation-runbook-types.md#powershell-runbooks). Select **Powershell** for **Runbook type**.
53+
5. In this case, you're going to create a [PowerShell runbook](automation-runbook-types.md#powershell-runbooks). Select **PowerShell** for **Runbook type**.
5454
6. Click **Create** to create the runbook and open the textual editor.
5555

5656
## Step 2 - Add code to the runbook

articles/automation/automation-first-runbook-textual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Start by creating a simple runbook that outputs the text `Hello World`.
3939
1. Select **Runbooks** under **Process Automation** to open the list of runbooks.
4040
1. Create a new runbook by selecting **Create a runbook**.
4141
1. Give the runbook the name **MyFirstRunbook-Workflow**.
42-
1. In this case, you're going to create a [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks). So select **Powershell Workflow** for **Runbook type**.
42+
1. In this case, you're going to create a [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks). Select **PowerShell Workflow** for **Runbook type**.
4343
1. Click **Create** to create the runbook and open the textual editor.
4444

4545
## Step 2 - Add code to the runbook

articles/automation/automation-runbook-output-and-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ By default, the job history does not store verbose messages from published runbo
152152

153153
When [testing a runbook](automation-testing-runbook.md), verbose messages aren't displayed even if the runbook is configured to log verbose records. To display verbose messages while [testing a runbook](automation-testing-runbook.md), you must set the `VerbosePreference` variable to Continue. With that variable set, verbose messages are displayed in the Test output pane of the Azure portal.
154154

155-
The following code reates a verbose message using the [Write-Verbose](https://technet.microsoft.com/library/hh849951.aspx) cmdlet.
155+
The following code creates a verbose message using the [Write-Verbose](https://technet.microsoft.com/library/hh849951.aspx) cmdlet.
156156

157157
```powershell
158158
#The following line creates a verbose message.

0 commit comments

Comments
 (0)