Skip to content

Commit d283fbd

Browse files
committed
Fix for spelling correction
1 parent 5edf06d commit d283fbd

9 files changed

+13
-13
lines changed

Src/Private/Get-AbrOntapDiskInv.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function Get-AbrOntapDiskInv {
4141
'Bay' = $Disks.Bay
4242
'Capacity' = $Disks.Capacity | ConvertTo-FormattedNumber -Type Disksize -ErrorAction SilentlyContinue
4343
'Model' = $Disks.Model
44-
'SerialNumber' = $DiskType.SerialNumber
44+
'Serial Number' = $DiskType.SerialNumber
4545
'Type' = $DiskType.DiskType
4646
}
4747
}

Src/Private/Get-AbrOntapEfficiencyAggr.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function Get-AbrOntapEfficiencyAggr {
3333
'Logical Used' = $Saving.AggrLogicalUsed | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
3434
'Physical Used' = $Saving.AggrPhysicalUsed | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
3535
'Compaction Saved' = $Saving.AggrCompactionSaved | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
36-
'Data reduction' = $Saving.AggrDataReductionStorageEfficiencyRatio
36+
'Data Reduction' = $Saving.AggrDataReductionStorageEfficiencyRatio
3737

3838
}
3939
$OutObj += [pscustomobject]$inobj

Src/Private/Get-AbrOntapEfficiencyConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function Get-AbrOntapEfficiencyConfig {
3535
'Capacity Tier Used' = $Saving.CapacityTierUsed | ConvertTo-FormattedNumber -Type Datasize -NumberFormatString "0.0" -ErrorAction SilentlyContinue
3636
'Compaction Saved %' = $Saving.DataCompactionSpaceSavedPercent | ConvertTo-FormattedNumber -Type Percent -ErrorAction SilentlyContinue
3737
'Deduplication Saved %' = $Saving.SisSpaceSavedPercent | ConvertTo-FormattedNumber -Type Percent -ErrorAction SilentlyContinue
38-
'Total Data reduction' = $TotalStorageEfficiencyRatio.TotalStorageEfficiencyRatio
38+
'Total Data Reduction' = $TotalStorageEfficiencyRatio.TotalStorageEfficiencyRatio
3939

4040
}
4141
$OutObj += [pscustomobject]$inobj

Src/Private/Get-AbrOntapNetworkBdomain.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ function Get-AbrOntapNetworkBdomain {
2929
foreach ($Item in $BDomain) {
3030
$inObj = [ordered] @{
3131
'Name' = $Item.BroadcastDomain
32-
'Ipspace' = $Item.Ipspace
32+
'IPSpace' = $Item.Ipspace
3333
'Failover Groups' = $Item.FailoverGroups
34-
'Mtu' = $Item.Mtu
34+
'MTU' = $Item.Mtu
3535
'Ports' = $Item.Ports
3636
}
3737
$BDomainObj += [pscustomobject]$inobj

Src/Private/Get-AbrOntapSecurityUsers.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function Get-AbrOntapSecurityUser {
3535
'User Name' = $Item.UserName
3636
'Application' = $TextInfo.ToTitleCase($Item.Application)
3737
'Auth Method' = $Item.AuthMethod
38-
'RoleName' = $Item.RoleName
38+
'Role Name' = $Item.RoleName
3939
'Locked' = ConvertTo-TextYN $Item.IsLocked
4040
}
4141
$OutObj += [pscustomobject]$inobj

Src/Private/Get-AbrOntapVserverCIFSOptions.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function Get-AbrOntapVserverCIFSOption {
4141
'Copy Offload Enabled' = ConvertTo-TextYN $Item.IsCopyOffloadEnabled
4242
'Dac Enabled' = ConvertTo-TextYN $Item.IsDacEnabled
4343
'Export Policy Enabled' = ConvertTo-TextYN $Item.IsExportpolicyEnabled
44-
'Large Mtu Enabled' = ConvertTo-TextYN $Item.IsLargeMtuEnabled
44+
'Large MTU Enabled' = ConvertTo-TextYN $Item.IsLargeMtuEnabled
4545
'Local Auth Enabled' = ConvertTo-TextYN $Item.IsLocalAuthEnabled
4646
'Local Users And Groups Enabled' = ConvertTo-TextYN $Item.IsLocalUsersAndGroupsEnabled
4747
'Multi Channel Enabled' = ConvertTo-TextYN $Item.IsMultichannelEnabled

Src/Private/Get-AbrOntapVserverLunStorage.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function Get-AbrOntapVserverLunStorage {
4747
'Available' = $available | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
4848
'Used' = $used | ConvertTo-FormattedNumber -Type Percent -ErrorAction SilentlyContinue
4949
'OS Type' = $Item.Protocol
50-
'IsThin' = ConvertTo-TextYN $Item.Thin
50+
'Is Thin' = ConvertTo-TextYN $Item.Thin
5151
'Space Allocation' = Switch ($Item.IsSpaceAllocEnabled) {
5252
'True' { 'Enabled' }
5353
'False' { 'Disabled' }
@@ -58,7 +58,7 @@ function Get-AbrOntapVserverLunStorage {
5858
'False' { 'Disabled' }
5959
default {$Item.IsSpaceReservationEnabled}
6060
}
61-
'IsMapped' = ConvertTo-TextYN $Item.Mapped
61+
'Is Mapped' = ConvertTo-TextYN $Item.Mapped
6262
'Status' = Switch ($Item.Online) {
6363
'True' { 'Up' }
6464
'False' { 'Down' }

Src/Private/Get-AbrOntapVserverSummary.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function Get-AbrOntapVserverSummary {
3535
'Vserver Type' = $Item.VserverType
3636
'Allowed Protocols' = [string]$Item.AllowedProtocols
3737
'Disallowed Protocols' = [string]$Item.DisallowedProtocols
38-
'IP Space' = $Item.Ipspace
38+
'IPSpace' = $Item.Ipspace
3939
'Status' = $Item.State
4040
}
4141
$VserverObj += [pscustomobject]$inobj
@@ -64,7 +64,7 @@ function Get-AbrOntapVserverSummary {
6464
$inObj = [ordered] @{
6565
'Root Volume' = $Item.Name
6666
'Status' = $Item.State
67-
'TotalSize' = $Item.Totalsize | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
67+
'Total Size' = $Item.Totalsize | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
6868
'Used' = $Item.Used | ConvertTo-FormattedNumber -Type Percent -ErrorAction SilentlyContinue
6969
'Available' = $Item.Available | ConvertTo-FormattedNumber -Type Datasize -ErrorAction SilentlyContinue
7070
'Dedup' = ConvertTo-TextYN $Item.Dedupe

Src/Public/Invoke-AsBuiltReport.NetApp.ONTAP.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function Invoke-AsBuiltReport.NetApp.ONTAP {
4343
#---------------------------------------------------------------------------------------------#
4444
# Cluster Section #
4545
#---------------------------------------------------------------------------------------------#
46-
Section -Style Heading1 "Report for Cluster $($ClusterInfo.ClusterName)" {
46+
Section -Style Heading1 "$($ClusterInfo.ClusterName) Cluster Report" {
4747
Paragraph "The following section provides a summary of the array configuration for $($ClusterInfo.ClusterName)."
4848
BlankLine
4949
#region Cluster Section
@@ -594,7 +594,7 @@ function Invoke-AsBuiltReport.NetApp.ONTAP {
594594
BlankLine
595595
Get-AbrOntapEfficiencyVol -Vserver $SVM
596596
}
597-
Section -Style Heading5 "Volume Efficiency Detailed" {
597+
Section -Style Heading5 "Detailed Volume Efficiency" {
598598
Paragraph "The following section provides the Volume Efficiency Saving Detailed information on $($SVM)."
599599
BlankLine
600600
Get-AbrOntapEfficiencyVolDetailed -Vserver $SVM

0 commit comments

Comments
 (0)