Skip to content

Commit

Permalink
Fix typos in method summary comments (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinitek authored Apr 19, 2020
1 parent 9e29660 commit 6951d7d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/DynamicData/Cache/ISourceUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
namespace DynamicData
{
/// <summary>
/// Api for updating a source cache
/// API for updating a source cache.
///
/// Use edit to produce singular changeset.
///
/// NB:The evaluate method is used to signal to any observing operators
/// to reevaluate whether the the object still matches downstream operators.
/// NB: The evaluate method is used to signal to any observing operators
/// to reevaluate whether the the object still matches downstream operators.
/// This is primarily targeted to inline object changes such as datetime and calculated fields.
///
/// </summary>
Expand All @@ -22,7 +22,7 @@ namespace DynamicData
public interface ISourceUpdater<TObject, TKey> : ICacheUpdater<TObject, TKey>
{
/// <summary>
/// Clears existing values and loads the sepcified items
/// Clears existing values and loads the specified items.
/// </summary>
/// <param name="items">The items.</param>
void Load(IEnumerable<TObject> items);
Expand All @@ -34,16 +34,16 @@ public interface ISourceUpdater<TObject, TKey> : ICacheUpdater<TObject, TKey>
void AddOrUpdate(IEnumerable<TObject> items);

/// <summary>
/// Adds or update the item,
/// Adds or updates the item.
/// </summary>
/// <param name="item">The item.</param>
void AddOrUpdate(TObject item);

/// <summary>
/// Adds or update the item using a comparer
/// Adds or updates the item using a comparer.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="comparer">The comparer</param>
/// <param name="comparer">The comparer.</param>
void AddOrUpdate(TObject item, IEqualityComparer<TObject> comparer);

/// <summary>
Expand All @@ -53,7 +53,7 @@ public interface ISourceUpdater<TObject, TKey> : ICacheUpdater<TObject, TKey>
void Refresh(IEnumerable<TObject> items);

/// <summary>
///Refreshes the specified item
/// Refreshes the specified item.
/// </summary>
/// <param name="item">The item.</param>
void Refresh(TObject item);
Expand All @@ -66,14 +66,14 @@ public interface ISourceUpdater<TObject, TKey> : ICacheUpdater<TObject, TKey>
void Evaluate(IEnumerable<TObject> items);

/// <summary>
///Refreshes the specified item
/// Refreshes the specified item.
/// </summary>
/// <param name="item">The item.</param>
[Obsolete(Constants.EvaluateIsDead)]
void Evaluate(TObject item);

/// <summary>
///Removes the specified items
/// Removes the specified items.
/// </summary>
/// <param name="items">The items.</param>
void Remove(IEnumerable<TObject> items);
Expand Down

0 comments on commit 6951d7d

Please sign in to comment.