Skip to content

Commit

Permalink
Fix typo giving syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jrylander committed May 22, 2024
1 parent b90afdf commit 0186350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl Client {
}
#[cfg(feature = "async-std-comp")]
rt @ Runtime::AsyncStd => {
if letSome(connection_timeout) = config.connection_timeout {
if let Some(connection_timeout) = config.connection_timeout {
rt.timeout(
connection_timeout,
self.get_multiplexed_async_connection_inner::<crate::aio::async_std::AsyncStd>(
Expand Down

0 comments on commit 0186350

Please sign in to comment.