Skip to content

Commit

Permalink
Fix Trigger class comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes committed Jun 14, 2016
1 parent 971031a commit 251950a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ namespace Microsoft.Xaml.Interactivity
/// <summary>
/// A base class for behaviors, implementing the basic plumbing of ITrigger
/// </summary>
/// <typeparam name="T">The object type to attach to</typeparam>
public abstract class Trigger : Behavior, ITrigger
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace Microsoft.Xaml.Interactivity
/// <summary>
/// A base class for behaviors, implementing the basic plumbing of ITrigger
/// </summary>
/// <typeparam name="T">The object type to attach to</typeparam>
public abstract class Trigger<T> : Trigger where T : DependencyObject
{
/// <summary>
Expand Down

0 comments on commit 251950a

Please sign in to comment.