From 4a576df3e662d1d8ef8f8de8b0c4e997b8713e02 Mon Sep 17 00:00:00 2001 From: Mikey Bronowski Date: Sun, 21 Jul 2024 18:21:31 +0100 Subject: [PATCH] Typos Update Get-DbaDbccHelp.ps1 (#9424) --- public/Get-DbaDbccHelp.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/Get-DbaDbccHelp.ps1 b/public/Get-DbaDbccHelp.ps1 index f2cdbaaa02..9a53c239d1 100644 --- a/public/Get-DbaDbccHelp.ps1 +++ b/public/Get-DbaDbccHelp.ps1 @@ -47,12 +47,12 @@ function Get-DbaDbccHelp { .EXAMPLE PS C:\> Get-DbaDbccHelp -SqlInstance SQLInstance -Statement FREESYSTEMCACHE -Verbose | Format-List - Runs the command DBCC HELP(FREESYSTEMCACHE) WITH NO_INFOMSGS against the SQL Server instance SQLInstance + Runs the command DBCC HELP(FREESYSTEMCACHE) WITH NO_INFOMSGS against the SQLInstance SQL Server instance. .EXAMPLE - PS C:\> Get-DbaDbccHelp -SqlInstance LensmanSB -Statement WritePage -IncludeUndocumented | Format-List + PS C:\> Get-DbaDbccHelp -SqlInstance SQLInstance -Statement WritePage -IncludeUndocumented | Format-List - Sets TraeFlag 2588 on for session and then runs the command DBCC HELP(WritePage) WITH NO_INFOMSGS against the SQL Server instance SQLInstance + Sets Trace Flag 2588 on for the session and then runs the command DBCC HELP(WritePage) WITH NO_INFOMSGS against the SQLInstance SQL Server instance. #> [CmdletBinding()] @@ -105,4 +105,4 @@ function Get-DbaDbccHelp { } } -} \ No newline at end of file +}