Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLarsson committed Sep 18, 2018
1 parent 3d14c81 commit 24215e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gu.Localization/ObservableSortedSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Gu.Localization
namespace Gu.Localization
{
using System;
using System.Collections;
Expand All @@ -7,7 +7,7 @@
using System.ComponentModel;

/// <summary>
/// A wrapper for <see cref="SortedSet{T}"/> that notifies aboout changes.
/// A wrapper for <see cref="SortedSet{T}"/> that notifies about changes.
/// </summary>
[Serializable]
public class ObservableSortedSet<T> : ISet<T>, IReadOnlyCollection<T>, INotifyCollectionChanged, INotifyPropertyChanged
Expand Down Expand Up @@ -215,4 +215,4 @@ private void RaiseReset()
this.OnCollectionChanged(CachedEventArgs.NotifyCollectionReset);
}
}
}
}

0 comments on commit 24215e0

Please sign in to comment.