Skip to content

Commit 3fea7e0

Browse files
author
Staffan Gustafsson
committed
Fixing spelling error of Extension
1 parent f09a266 commit 3fea7e0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

PSEverything/PSEverything.dll-Help.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8" ?>
22
<helpItems xmlns="http://msh" schema="maml">
33
<!-- Edited with: SAPIEN PowerShell HelpWriter 2015 v1.0.10-->
44
<!-- Generated by: SAPIEN PowerShell HelpWriter 2015 v1.0.10-->
@@ -179,7 +179,7 @@ Attribute Constants:
179179
<command:parameterValue required="false" variableLength="false">String[]</command:parameterValue>
180180
</command:parameter>
181181
<command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
182-
<maml:name>Extention</maml:name>
182+
<maml:name>Extension</maml:name>
183183
<maml:description>
184184
<maml:para>Search for files with extensions matching the specified values</maml:para>
185185
</maml:description>
@@ -513,7 +513,7 @@ Attribute Constants:
513513
<dev:defaultValue/>
514514
</command:parameter>
515515
<command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
516-
<maml:name>Extention</maml:name>
516+
<maml:name>Extension</maml:name>
517517
<maml:description>
518518
<maml:para>Search for files with extensions matching the specified values</maml:para>
519519
</maml:description>

PSEverything/SearchEverythingCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class SearchEverythingCommand : PSCmdlet
1919
public string[] Exclude { get; set; }
2020

2121
[Parameter(ParameterSetName = "default")]
22-
public string[] Extention { get; set; }
22+
public string[] Extension { get; set; }
2323

2424
[Parameter(ParameterSetName = "default")]
2525
public string[] PathInclude { get; set; }
@@ -125,7 +125,7 @@ void AddFolderFilter(StringBuilder searchBuilder)
125125

126126
void AddExtensionFilter(StringBuilder searchBuilder)
127127
{
128-
AddListFilter(searchBuilder, "ext:", Extention, null, ';');
128+
AddListFilter(searchBuilder, "ext:", Extension, null, ';');
129129
}
130130

131131
void AddParentCountFilter(StringBuilder searchBuilder)

0 commit comments

Comments
 (0)