Similar keys of one cmdlet at one line

Hi. I need to select a PCs with Get-ADComputer, whose names beginning with N and W, so I tried this:
Get-ADComputer -Filter {Name -like ‘w*’ or Name -like ‘n*’}
But I got syntax error. How exactly this command should be?

The OR operator is -or. It seems that you’ve typed “or” without the dash.

Gods… such a newbie mistake. Thanks, Don!