Skip to content

Commit

Permalink
Merge pull request #24 from davenverse/typoName
Browse files Browse the repository at this point in the history
Typo
  • Loading branch information
ChristopherDavenport authored Aug 13, 2021
2 parents cc9832d + 8045d15 commit 74c6989
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 74c6989

Please sign in to comment.