Skip to content

Commit d82198f

Browse files
authored
Update Output-and-Formatting.md
1 parent 4ef6c31 commit d82198f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Best-Practices/Output-and-Formatting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ When you combine the output of multiple types objects, they should generally be
4848

4949
### Two important exceptions to the single-type rule
5050

51-
**For internal functions** it's ok to return multiple different types because they won't be "output" to the user/host, and can offer significant savings (e.g. one database call with three table joins, instead of three database calls with two or three joins each). You can then call these functions and assign the output to multiple variables, like so:
51+
**For internal functions** it's ok to return multiple different types because they won't be "output" to the user/host, and can offer significant savings (e.g., one database call with three table joins, instead of three database calls with two or three joins each). You can then call these functions and assign the output to multiple variables, like so:
5252

5353
```PowerShell
5454
$user, $group, $org = Get-UserGroupOrg

0 commit comments

Comments
 (0)