fix typo in code example
This commit is contained in:
Родитель
d13869f6aa
Коммит
5b63332e1f
|
@ -102,7 +102,7 @@ public class TextCaseConverter : IValueConverter
|
|||
case "upper":
|
||||
case "SQL":
|
||||
return sourceText.ToUpper();
|
||||
case "lower"
|
||||
case "lower":
|
||||
return sourceText.ToLower();
|
||||
case "title": // Every First Letter Uppercase
|
||||
var txtinfo = new System.Globalization.CultureInfo("en-US",false).TextInfo;
|
||||
|
@ -175,4 +175,4 @@ public class AnimalConverter : IValueConverter
|
|||
throw new NotSupportedException();
|
||||
}
|
||||
}
|
||||
```
|
||||
```
|
||||
|
|
Загрузка…
Ссылка в новой задаче