Skip to content

Commit f6a3543

Browse files
authored
Typo fixes (#207)
* Update CacheStore.cs Fixing typo in comments * Update ICacheStore.cs Fixing typo in comments
1 parent d7bdc19 commit f6a3543

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Src/ElasticScale.Client/ShardManagement/Cache/CacheStore.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public virtual void AddOrUpdateShardMap(IStoreShardMap shardMap)
5353
}
5454

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

129129
/// <summary>
130-
/// Invoked for deleting mapping in cache becase it no longer exists in store.
130+
/// Invoked for deleting mapping in cache because it no longer exists in store.
131131
/// </summary>
132132
/// <param name="mapping">Storage representation of mapping.</param>
133133
public virtual void DeleteMapping(IStoreMapping mapping)

Src/ElasticScale.Client/ShardManagement/Cache/ICacheStore.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internal interface ICacheStore : IDisposable
3434
void AddOrUpdateShardMap(IStoreShardMap shardMap);
3535

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

5656
/// <summary>
57-
/// Invoked for deleting mapping in cache becase it no longer exists in store.
57+
/// Invoked for deleting mapping in cache because it no longer exists in store.
5858
/// </summary>
5959
/// <param name="mapping">Storage representation of mapping.</param>
6060
void DeleteMapping(IStoreMapping mapping);

0 commit comments

Comments
 (0)