Skip to content

Commit

Permalink
#1109 : Fixed references to namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellwest committed May 25, 2019
1 parent 19901fe commit 1e84cc4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Spe/Core/Validation/MiscAutocompleteSets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public class MiscAutocompleteSets

public static Dictionary<string, string> completers { get; } = new Dictionary<string, string>
{
["Get-Item:Database"] = "[Spe.Commandlets.BaseLanguageAgnosticItemCommand]::Databases",
["Get-ChildItem:Database"] = "[Spe.Commandlets.BaseLanguageAgnosticItemCommand]::Databases",
["Get-Item:Language"] = "[Spe.Commandlets.BaseItemCommand]::Cultures",
["Get-ChildItem:Language"] = "[Spe.Commandlets.BaseItemCommand]::Cultures",
["New-Item:Language"] = "[Spe.Commandlets.BaseItemCommand]::Cultures",
["Get-Item:Database"] = "[Spe.Commands.BaseLanguageAgnosticItemCommand]::Databases",
["Get-ChildItem:Database"] = "[Spe.Commands.BaseLanguageAgnosticItemCommand]::Databases",
["Get-Item:Language"] = "[Spe.Commands.BaseItemCommand]::Cultures",
["Get-ChildItem:Language"] = "[Spe.Commands.BaseItemCommand]::Cultures",
["New-Item:Language"] = "[Spe.Commands.BaseItemCommand]::Cultures",
["New-Item:ItemType"] = "[Spe.Core.Validation.MiscAutocompleteSets]::Templates",
};

Expand Down

0 comments on commit 1e84cc4

Please sign in to comment.