Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fixes #207

Merged
merged 2 commits into from
May 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Src/ElasticScale.Client/ShardManagement/Cache/CacheStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public virtual void AddOrUpdateShardMap(IStoreShardMap shardMap)
}

/// <summary>
/// Invoked for deleting shard map in cache becase it no longer exists in store.
/// Invoked for deleting shard map in cache because it no longer exists in store.
/// </summary>
/// <param name="shardMap">Storage representation of shard map.</param>
public virtual void DeleteShardMap(IStoreShardMap shardMap)
Expand Down Expand Up @@ -127,7 +127,7 @@ public virtual void AddOrUpdateMapping(IStoreMapping mapping, CacheStoreMappingU
}

/// <summary>
/// Invoked for deleting mapping in cache becase it no longer exists in store.
/// Invoked for deleting mapping in cache because it no longer exists in store.
/// </summary>
/// <param name="mapping">Storage representation of mapping.</param>
public virtual void DeleteMapping(IStoreMapping mapping)
Expand Down
4 changes: 2 additions & 2 deletions Src/ElasticScale.Client/ShardManagement/Cache/ICacheStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ internal interface ICacheStore : IDisposable
void AddOrUpdateShardMap(IStoreShardMap shardMap);

/// <summary>
/// Invoked for deleting shard map in cache becase it no longer exists in store.
/// Invoked for deleting shard map in cache because it no longer exists in store.
/// </summary>
/// <param name="shardMap">Storage representation of shard map.</param>
void DeleteShardMap(IStoreShardMap shardMap);
Expand All @@ -54,7 +54,7 @@ internal interface ICacheStore : IDisposable
void AddOrUpdateMapping(IStoreMapping mapping, CacheStoreMappingUpdatePolicy policy);

/// <summary>
/// Invoked for deleting mapping in cache becase it no longer exists in store.
/// Invoked for deleting mapping in cache because it no longer exists in store.
/// </summary>
/// <param name="mapping">Storage representation of mapping.</param>
void DeleteMapping(IStoreMapping mapping);
Expand Down