From a9eca053038f8f97fda5a5e744542df93048fea2 Mon Sep 17 00:00:00 2001 From: Wes Stahler Date: Sat, 4 Feb 2023 22:16:22 -0500 Subject: [PATCH] minor spelling edit --- mdHelp/en/add-excelchart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdHelp/en/add-excelchart.md b/mdHelp/en/add-excelchart.md index 224a558..3831a9e 100644 --- a/mdHelp/en/add-excelchart.md +++ b/mdHelp/en/add-excelchart.md @@ -81,7 +81,7 @@ PS\> $Excel = Invoke-Sum (Get-Process) Company Handles, PM, VirtualMemorySize | The first line exports information to a table in new file; and captures the excel Package object in $Excel -The second line creates a chart on the first page of the work sheet, using the notation "TableName\[ColumnnName\]" to refer to the data, the labels come Name column in the table, and the data series from its PM and VirtualMemorySize columns. The display names for these in the header are set to 'PM' and 'VMSize'. +The second line creates a chart on the first page of the work sheet, using the notation "TableName\[ColumnName\]" to refer to the data, the labels come Name column in the table, and the data series from its PM and VirtualMemorySize columns. The display names for these in the header are set to 'PM' and 'VMSize'. ### EXAMPLE 4