Skip to content

Commit

Permalink
Use more concise example
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermooo authored Jul 11, 2024
1 parent c8b5bef commit a786568
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ The following example shows how to select all odd numbers from the array.
This example show how to select the strings that aren't empty.

```powershell
('hi', '', 'there').Where({$_.Length})
('hi', '', 'there').Where{$_}
```

```Output
Expand Down

0 comments on commit a786568

Please sign in to comment.