Fix typo in PairDeconstructor class name

PairDeconstuctor → PairDeconstructor (was missing an 'r')

Keeping `PairDeconstuctor` and marking it as obsolete since it's a public type.
This commit is contained in:
Cédric Luthi
2021-11-10 14:16:58 +01:00
committed by Patrik Svensson
parent 48df9cf68b
commit 19eb273813
3 changed files with 15 additions and 4 deletions

View File

@ -56,7 +56,7 @@ namespace Spectre.Console.Tests.Unit.Cli
public IReadOnlyDictionary<string, string> Values { get; set; }
}
public sealed class StringIntDeconstructor : PairDeconstuctor<string, string>
public sealed class StringIntDeconstructor : PairDeconstructor<string, string>
{
protected override (string Key, string Value) Deconstruct(string value)
{