Browse Source
Merge pull request #9864 from SimonCropp/fix-minor-typos
fix minor typos
pull/9921/head
Max Katz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
samples/ControlCatalog/Pages/DateTimePickerPage.xaml.cs
-
src/tools/DevAnalyzers/GenericVirtualAnalyzer.cs
|
|
|
@ -17,7 +17,7 @@ namespace ControlCatalog.Pages |
|
|
|
this.Get<TextBlock>("TimePickerDesc").Text = "Use a TimePicker to let users set a time in your app, for example " + |
|
|
|
"to set a reminder. The TimePicker displays three controls for hour, minute, and AM / PM(if necessary).These controls " + |
|
|
|
"are easy to use with touch or mouse, and they can be styled and configured in several different ways. " + |
|
|
|
"12 - hour or 24 - hour clock and visiblility of AM / PM is dynamically set based on user time settings, or can be overridden."; |
|
|
|
"12 - hour or 24 - hour clock and visibility of AM / PM is dynamically set based on user time settings, or can be overridden."; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@ -16,7 +16,7 @@ public class GenericVirtualAnalyzer : DiagnosticAnalyzer |
|
|
|
"Performance", |
|
|
|
DiagnosticSeverity.Warning, |
|
|
|
isEnabledByDefault: true, |
|
|
|
description: "Generic virtual methods affect JIT startup time adversly and should be avoided."); |
|
|
|
description: "Generic virtual methods affect JIT startup time adversely and should be avoided."); |
|
|
|
|
|
|
|
public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Rule); |
|
|
|
|
|
|
|
|