Fix quoted variable reference in documentation.

Closes #2850
This commit is contained in:
Mingron
2024-02-17 15:23:31 +08:00
committed by Mark Paluch
parent 7c3546474e
commit 00c825bd96

View File

@@ -44,7 +44,7 @@ public class HashMapping {
public Person loadHash(String key) {
Map<byte[], byte[]> loadedHash = hashOperations.entries("key");
Map<byte[], byte[]> loadedHash = hashOperations.entries(key);
return (Person) mapper.fromHash(loadedHash);
}
}