Skip to content

Commit b4f6587

Browse files
committed
Merge branch 'zmscore' of https://github.com/ttingen/StackExchange.Redis into zmscore
2 parents aed021b + 505c69a commit b4f6587

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/StackExchange.Redis/Interfaces/IDatabase.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1698,15 +1698,15 @@ IEnumerable<SortedSetEntry> SortedSetScan(RedisKey key,
16981698
double? SortedSetScore(RedisKey key, RedisValue member, CommandFlags flags = CommandFlags.None);
16991699

17001700
/// <summary>
1701-
/// Returns the scores of members in the sorted set at key.
1702-
/// If a member does not exist in the sorted set, or key does not exist, nil is returned.
1701+
/// Returns the scores of members in the sorted set at <paramref name="key"/>.
1702+
/// If a member does not exist in the sorted set, or key does not exist, <see langword="null"/> is returned.
17031703
/// </summary>
17041704
/// <param name="key">The key of the sorted set.</param>
17051705
/// <param name="members">The members to get a score for.</param>
17061706
/// <param name="flags">The flags to use for this operation.</param>
17071707
/// <returns>
1708-
/// The scores of the members in the same order as the <paramref name="members"/> array. If a member does
1709-
/// not exist in the set, nil is returned.
1708+
/// The scores of the members in the same order as the <paramref name="members"/> array.
1709+
/// If a member does not exist in the set, <see langword="null"/> is returned.
17101710
/// </returns>
17111711
/// <remarks>https://redis.io/commands/zmscore</remarks>
17121712
double?[] SortedSetScore(RedisKey key, RedisValue[] members, CommandFlags flags = CommandFlags.None);

src/StackExchange.Redis/Interfaces/IDatabaseAsync.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,15 +1651,15 @@ IAsyncEnumerable<SortedSetEntry> SortedSetScanAsync(RedisKey key,
16511651
Task<double?> SortedSetScoreAsync(RedisKey key, RedisValue member, CommandFlags flags = CommandFlags.None);
16521652

16531653
/// <summary>
1654-
/// Returns the scores of members in the sorted set at key.
1655-
/// If a member does not exist in the sorted set, or key does not exist, nil is returned.
1654+
/// Returns the scores of members in the sorted set at <paramref name="key"/>.
1655+
/// If a member does not exist in the sorted set, or key does not exist, <see langword="null"/> is returned.
16561656
/// </summary>
16571657
/// <param name="key">The key of the sorted set.</param>
16581658
/// <param name="members">The members to get a score for.</param>
16591659
/// <param name="flags">The flags to use for this operation.</param>
16601660
/// <returns>
1661-
/// The scores of the members in the same order as the <paramref name="members"/> array. If a member does
1662-
/// not exist in the set, nil is returned.
1661+
/// The scores of the members in the same order as the <paramref name="members"/> array.
1662+
/// If a member does not exist in the set, <see langword="null"/> is returned.
16631663
/// </returns>
16641664
/// <remarks>https://redis.io/commands/zmscore</remarks>
16651665
Task<double?[]> SortedSetScoreAsync(RedisKey key, RedisValue[] members, CommandFlags flags = CommandFlags.None);

0 commit comments

Comments
 (0)