"ms" is a standard abbreviation for "milliseconds", so it make sense to allow `-ms` as an alias for `-MilliSeconds`. ```powershell Start-Sleep -ms 100 # should be short for Start-Sleep -Milliseconds 100 ``` ```powershell PowerShell Core v6.0.0-beta.2 ```