You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/RediStack/Commands/RedisCommand.swift
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,10 @@
17
17
/// An instance will retain the keyword of the command in plaintext as a `String` for identity purposes,
18
18
/// while all the arguments will be stored as `RESPValue` representations.
19
19
///
20
-
/// ## ResultType
21
-
/// Each `RedisCommand` has a generic type referred to as `ResultType` that is the native Swift representation of the response Redis will send for the command.
20
+
/// Each `RedisCommand` has a generic type referred to as `ResultType` that is the native Swift representation
21
+
/// of the final result type parsed from the Redis command response.
22
22
///
23
-
/// When creating a `RedisCommand`, a closure will be provided for transforming an arbitrary `RESPValue` instance into the `ResultType`.
23
+
/// When creating a `RedisCommand`, a closure is provided for transforming an arbitrary `RESPValue` instance into the `ResultType`.
0 commit comments