From 19b66075f3d7cf409736c3305f5f687cb9c1e9ce Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 12 Jan 2015 14:09:31 +0300 Subject: [PATCH] Update powershell.md add some colons --- powershell.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/powershell.md b/powershell.md index e6a847e..2f30dad 100644 --- a/powershell.md +++ b/powershell.md @@ -1,6 +1,8 @@ # Powershell name convention -|Object| Notation |Example | -|------|------------|-------------| -|Cmdlet|PascalCase |Import-Module| +| Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example | +|-----------|-----------|-----------------------|--------|-------|--------|--------|---------------------| +| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule | +| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord | +| Parameter | No | PascalCase | 30 | No | No | No | MyParameter |