Skip to content

Files

Latest commit

 

History

History
33 lines (22 loc) · 500 Bytes

UseSingularNouns.md

File metadata and controls

33 lines (22 loc) · 500 Bytes

Pattern: Use of plural noun for Cmdlet

Issue: -

Description

Cmdlets should use singular nouns and not plurals.

How

Change plurals to singular.

Example of incorrect code:

function Get-Files
{
    ...
}

Example of correct code:

function Get-File
{
    ...
}

Further Reading