Skip to content

Commit

Permalink
fix missing return in get method in data source groups code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
tnmtechnologies committed Oct 12, 2022
1 parent 4342fa4 commit 0d4ae30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/redis-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public class MyRedisService {
}
public Person get(String field) {
commands.hget(MY_KEY, field); // <4>
return commands.hget(MY_KEY, field); // <4>
}
}
----
Expand Down

0 comments on commit 0d4ae30

Please sign in to comment.