Skip to content

Commit a28f24f

Browse files
authored
Add dot to sentences.
At two locations, a dot was missing at the end of the sentence. This has been corrected.
1 parent 2e1d936 commit a28f24f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Best-Practices/Building-Reusable-Tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Controllers often produce output directly to the screen (when designed for inter
1313

1414
Generally, people tend to feel that most working code - that is, your code which does things - should be modularized into functions and ideally stored in script modules.
1515

16-
That makes those functions more easily reused. Those functions should exhibit a high level of reusability, such as accepting input only via parameters and producing output only as objects to the pipeline
16+
That makes those functions more easily reused. Those functions should exhibit a high level of reusability, such as accepting input only via parameters and producing output only as objects to the pipeline.
1717

1818
# TOOL-03 Make tools as re-usable as possible
1919

@@ -29,7 +29,7 @@ You can get a list of the verbs by typing 'get-verb' at the command line.
2929

3030
Tools should be consistent with PowerShell native cmdlets in regards parameter naming.
3131

32-
For example, use $ComputerName and $ServerInstance rather than something like $Param_Computer or $InstanceName
32+
For example, use $ComputerName and $ServerInstance rather than something like $Param_Computer or $InstanceName.
3333

3434
# TOOL-06 Tools should output raw data
3535

0 commit comments

Comments
 (0)