Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Fix WeakSubscribe parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkoshevoi committed Feb 16, 2021
1 parent 83e35db commit 221ee0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Xamarin.CommunityToolkit.ObjectModel.Extensions
{
public static class INotifyPropertyChangedExtension
{
public static void WeakSubscribe<T>(this INotifyPropertyChanged target, T subscriber, Action<T, object, EventArgs> action)
public static void WeakSubscribe<T>(this INotifyPropertyChanged target, T subscriber, Action<T, object, PropertyChangedEventArgs> action)
{
_ = target ?? throw new ArgumentNullException(nameof(target));
if (subscriber == null || action == null)
Expand Down

0 comments on commit 221ee0f

Please sign in to comment.