Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherDavenport authored Aug 13, 2021
1 parent cc9832d commit 8045d15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object RedisCommands {
def linsertbefore[F[_]: RedisCtx](key: String, pivot: String, value: String): F[Long] =
RedisCtx[F].keyed(key, NEL.of("LINSERT", key.encode, "BEFORE", pivot.encode, value.encode))

def lisertafter[F[_]: RedisCtx](key: String, pivot: String, value: String): F[Long] =
def linsertafter[F[_]: RedisCtx](key: String, pivot: String, value: String): F[Long] =
RedisCtx[F].keyed(key, NEL.of("LINSERT", key.encode, "AFTER", pivot.encode, value.encode))

def getType[F[_]: RedisCtx](key: String): F[RedisType] =
Expand Down

0 comments on commit 8045d15

Please sign in to comment.