diff --git a/docs/collections/ObservableGroups.md b/docs/collections/ObservableGroups.md index 940e9d8a1..d01f6761c 100644 --- a/docs/collections/ObservableGroups.md +++ b/docs/collections/ObservableGroups.md @@ -19,12 +19,12 @@ It is used by `ObservableGroupedCollection` to represent the group | Property | Type | Description | | -- | -- | -- | -| Key | TKey | The key of the group. It is immutable. | +| Key | TKey | The key of the group. | ## ObservableGroupedCollection A list of groups that can be used by a [CollectionViewSource](https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Data.CollectionViewSource) to display groups in a `ListView` or `GridView`. -Each group inside the collection has an immutable `TKey` key and contains `TValue` values. +Each group inside the collection has an observable `TKey` key and contains `TValue` values. It is an `ObservableCollection>` so groups can be added to the collection using the regular methods of [ObservableCollection](https://docs.microsoft.com/en-us/dotnet/api/system.collections.objectmodel.observablecollection-1?view=netstandard-2.0).