Skip to content

Commit 9413129

Browse files
alexandairsdwheeler
authored andcommitted
Minor formatting fixes (#4883)
Minor formatting fixes.
1 parent 740d5e1 commit 9413129

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

reference/6/Microsoft.PowerShell.Core/About/about_Return.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Users who are familiar with languages like C or C\# might want to use the
2121
`return` keyword to make the logic of leaving a scope explicit.
2222

2323
In PowerShell, the results of each statement are returned as output, even
24-
without a statement that contains the Return keyword. Languages like C or C\#
24+
without a statement that contains the `return` keyword. Languages like C or C\#
2525
return only the value or values that are specified by the `return` keyword.
2626

2727
> [!NOTE]
2828
> Beginning in PowerShell 5.0, PowerShell added language for defining
2929
> classes, by using formal syntax. In the context of a PowerShell class,
30-
> nothing is output from a method except what you specify using a
30+
> nothing is output from a method except what you specify a
3131
> `return` statement. You can read more about PowerShell classes in
3232
> [about_Classes](about_Classes.md).
3333
@@ -52,7 +52,7 @@ return (2 + $a)
5252

5353
The following example uses the `return` keyword to exit a function at a
5454
specific point if a conditional is met. Odd numbers are not multiplied
55-
because the return statement exits before that statement can execute.
55+
because the `return` statement exits before that statement can execute.
5656

5757
```powershell
5858
function MultiplyEven

0 commit comments

Comments
 (0)