Skip to content

Commit

Permalink
Merge pull request #100 from wieslawsoltes/FixTriggerClassComments
Browse files Browse the repository at this point in the history
Fix Trigger class comment
  • Loading branch information
skendrot authored Jun 14, 2016
2 parents 971031a + 251950a commit 22e885b
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 22e885b

Please sign in to comment.