diff options
author | luz.paz <[email protected]> | 2018-02-07 10:54:59 -0500 |
---|---|---|
committer | Scott <[email protected]> | 2018-02-20 18:10:44 +0000 |
commit | 2d1c8541460c2b63d46eb1a278adacee14a55556 (patch) | |
tree | baf9c409edfb51f1a2b649b1f6e2291ff0524b76 /win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs | |
parent | 5ce54df39b61c5b104f83d7ce291e67eada56efc (diff) |
Misc. typos
Found via `codespell -q 3 --skip="./gtk/po`
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs b/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs index 8c2b39e03..eba0f3ded 100644 --- a/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs +++ b/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml.cs @@ -28,25 +28,25 @@ namespace HandBrakeWPF.Controls }
/// <summary>
- /// Dependancy Property for the Message Property
+ /// Dependency Property for the Message Property
/// </summary>
public static readonly DependencyProperty MessageProperty =
DependencyProperty.Register("Message", typeof(string), typeof(AlertPanel), new UIPropertyMetadata("Loading..."));
/// <summary>
- /// Dependancy Property for the submessage propery
+ /// Dependency Property for the submessage property
/// </summary>
public static readonly DependencyProperty SubMessageProperty =
DependencyProperty.Register("SubMessage", typeof(string), typeof(AlertPanel), new FrameworkPropertyMetadata("Please Wait", FrameworkPropertyMetadataOptions.AffectsRender));
/// <summary>
- /// Dependancy Property for the submessage propery
+ /// Dependency Property for the submessage property
/// </summary>
public static readonly DependencyProperty DefaultActionProperty =
DependencyProperty.Register("DefaultAction", typeof(Action), typeof(AlertPanel), new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.None, DefaultActionSet));
/// <summary>
- /// Dependancy Property for the submessage propery
+ /// Dependency Property for the submessage property
/// </summary>
public static readonly DependencyProperty ActionTextProperty =
DependencyProperty.Register("ActionText", typeof(string), typeof(AlertPanel), new UIPropertyMetadata("Cancel"));
|