diff --git a/redisson/src/main/java/org/redisson/api/RSearch.java b/redisson/src/main/java/org/redisson/api/RSearch.java
index 7a428fd56..ba7a0fe26 100644
--- a/redisson/src/main/java/org/redisson/api/RSearch.java
+++ b/redisson/src/main/java/org/redisson/api/RSearch.java
@@ -211,6 +211,8 @@ public interface RSearch extends RSearchAsync {
/**
* Executes spell checking by defined index name and query.
+ * Returns a map of misspelled terms and their score.
+ *
*
* Map> res = s.spellcheck("idx", "Hocke sti", SpellcheckOptions.defaults()
* .includedTerms("name"));
@@ -219,7 +221,7 @@ public interface RSearch extends RSearchAsync {
* @param indexName index name
* @param query query
* @param options spell checking options
- * @return result
+ * @return map of misspelled terms and their score
*/
Map> spellcheck(String indexName, String query, SpellcheckOptions options);
diff --git a/redisson/src/main/java/org/redisson/api/RSearchAsync.java b/redisson/src/main/java/org/redisson/api/RSearchAsync.java
index 12f0f7446..9f191c269 100644
--- a/redisson/src/main/java/org/redisson/api/RSearchAsync.java
+++ b/redisson/src/main/java/org/redisson/api/RSearchAsync.java
@@ -211,6 +211,8 @@ public interface RSearchAsync {
/**
* Executes spell checking by defined index name and query.
+ * Returns a map of misspelled terms and their score.
+ *
*
* Map> res = s.spellcheck("idx", "Hocke sti", SpellcheckOptions.defaults()
* .includedTerms("name"));
@@ -219,7 +221,7 @@ public interface RSearchAsync {
* @param indexName index name
* @param query query
* @param options spell checking options
- * @return result
+ * @return map of misspelled terms and their score
*/
RFuture