Skip to content

Commit ff50589

Browse files
committed
Fix error message
1 parent 61edf52 commit ff50589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ impl<K: FromResp + Hash + Eq, T: FromResp> FromResp for HashMap<K, T> {
208208

209209
Ok(map)
210210
}
211-
_ => Err(error::resp("Cannot be converted into a vector", resp)),
211+
_ => Err(error::resp("Cannot be converted into a hashmap", resp)),
212212
}
213213
}
214214
}

0 commit comments

Comments
 (0)