Skip to content

Commit 555062c

Browse files
committed
[Docs] Fix symbol links resolution for various redis commands
1 parent 820820d commit 555062c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Sources/RediStack/Commands/HashCommands.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ extension RedisCommand {
149149
}
150150

151151
/// [HSET](https://redis.io/commands/hset)
152-
/// - Note: If you do not want to overwrite existing values, use ``hsetnx(_:field:to:)``.
152+
/// - Note: If you do not want to overwrite existing values, use ``hsetnx(_:to:in:)``.
153153
/// - Parameters:
154154
/// - field: The key of the field in the hash being set.
155155
/// - value: The value the hash field should be set to.
@@ -169,7 +169,7 @@ extension RedisCommand {
169169
}
170170

171171
/// [HSETNX](https://redis.io/commands/hsetnx)
172-
/// - Note: If you do not care about overwriting existing values, use ``hset(_:field:to:)``.
172+
/// - Note: If you do not care about overwriting existing values, use ``hset(_:to:in:)``.
173173
/// - Parameters:
174174
/// - field: The key of the field in the hash being set.
175175
/// - value: The value the hash field should be set to.

Sources/RediStack/Commands/KeyCommands.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ extension RedisCommand {
9494
extension RedisClient {
9595
/// Deletes the given keys. Any key that does not exist is ignored.
9696
///
97-
/// See ``RedisCommand/.del(keys:)``
97+
/// See ``RedisCommand/del(_:)``.
9898
/// - Parameters:
9999
/// - keys: The list of keys to delete from the database.
100100
/// - eventLoop: An optional event loop to hop to for any further chaining on the returned event loop future.
@@ -110,7 +110,7 @@ extension RedisClient {
110110

111111
/// Deletes the given keys. Any key that does not exist is ignored.
112112
///
113-
/// See ``RedisCommand/del(keys:)``
113+
/// See ``RedisCommand/del(_:)``
114114
/// - Parameters:
115115
/// - keys: The list of keys to delete from the database.
116116
/// - eventLoop: An optional event loop to hop to for any further chaining on the returned event loop future.

Sources/RediStack/Commands/SortedSetCommands.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ extension RedisCommand {
587587
/// [ZRANGEBYSCORE](https://redis.io/commands/zrangebyscore)
588588
/// - Important: This treats the SortedSet as ordered from **low** to **high**.
589589
///
590-
/// For the inverse, see ``zrevrangebyscore(from:withScores:limitBy:returning:)``.
590+
/// For the inverse, see ``zrevrangebyscore(from:withScores:limitBy:returning:)-2vp67``.
591591
/// - Parameters:
592592
/// - key: The key of the SortedSet.
593593
/// - range: The inclusive range of scores to filter elements by.
@@ -611,7 +611,7 @@ extension RedisCommand {
611611
/// [ZRANGEBYSCORE](https://redis.io/commands/zrangebyscore)
612612
/// - Important: This treats the SortedSet as ordered from **low** to **high**.
613613
///
614-
/// For the inverse, see ``zrevrangebyscore(from:withScores:limitBy:returning:)``.
614+
/// For the inverse, see ``zrevrangebyscore(from:withScores:limitBy:returning:)-3jdpl``.
615615
/// - Parameters:
616616
/// - key: The key of the SortedSet.
617617
/// - range: A range with an inclusive lower and exclusive upper bound of scores to filter elements by.
@@ -891,7 +891,7 @@ extension RedisCommand {
891891
/// If you need such a range, use ``zrevrange(from:firstIndex:lastIndex:)`` instead.
892892
/// - Important: This treats the SortedSet as ordered from **high** to **low**.
893893
///
894-
/// For the inverse, see ``zrange(from:indices:returning:)``.
894+
/// For the inverse, see ``zrange(from:indices:returning:)-95y9o``.
895895
/// - Parameters:
896896
/// - key: The key of the SortedSet to return elements from.
897897
/// - range: The range of inclusive indices of elements to get.
@@ -910,7 +910,7 @@ extension RedisCommand {
910910
/// If you need such a range, use ``zrevrange(from:firstIndex:lastIndex:)`` instead.
911911
/// - Important: This treats the SortedSet as ordered from **high** to **low**.
912912
///
913-
/// For the inverse, see ``zrange(from:indices:returning:)``.
913+
/// For the inverse, see ``zrange(from:indices:returning:)-4pd8n``.
914914
/// - Parameters:
915915
/// - key: The key of the SortedSet to return elements from.
916916
/// - range: The range of indices (inclusive lower, exclusive upper) elements to get.
@@ -989,7 +989,7 @@ extension RedisCommand {
989989
/// [ZREVRANGEBYSCORE](https://redis.io/commands/zrevrangebyscore)
990990
/// - Important: This treats the SortedSet as ordered from **high** to **low**.
991991
///
992-
/// For the inverse, see ``zrangebyscore(from:withScores:limitBy:returning:)``.
992+
/// For the inverse, see ``zrangebyscore(from:withScores:limitBy:returning:)-phw``.
993993
/// - Parameters:
994994
/// - key: The key of the SortedSet.
995995
/// - range: The inclusive range of scores to filter elements by.
@@ -1013,7 +1013,7 @@ extension RedisCommand {
10131013
/// [ZREVRANGEBYSCORE](https://redis.io/commands/zrevrangebyscore)
10141014
/// - Important: This treats the SortedSet as ordered from **high** to **low**.
10151015
///
1016-
/// For the inverse, see ``zrangebyscore(from:withScores:limitBy:returning:)``.
1016+
/// For the inverse, see ``zrangebyscore(from:withScores:limitBy:returning:)-4ukbv``.
10171017
/// - Parameters:
10181018
/// - key: The key of the SortedSet.
10191019
/// - range: A range with an inclusive lower and exclusive upper bound of scores to filter elements by.

0 commit comments

Comments
 (0)