Fix Docs GetEnumerator on HashTable

This commit is contained in:
caseysmithrc
2018-09-04 09:40:50 -06:00
parent 5341fe6954
commit 09e0767c52
@@ -20,6 +20,6 @@ Basic usage Examples:
`$currentTechnique = [System.IO.Path]::GetFileNameWithoutExtension($_.FullName);`
`$parsedYaml = (ConvertFrom-Yaml (Get-Content $_.FullName -Raw ));`
`$AllAtomicTests.Add($currentTechnique, $parsedYaml);`
`$AllAtomicTests | %{ Invoke-Atomic $_ -GenerateOnly}`
`$AllAtomicTests.GetEnumerator() | %{ Invoke-Atomic $_.Value -GenerateOnly}`
- Feedback Welcome