Skip to content

Commit 67c4f77

Browse files
authored
Fix JDoc text
1 parent 95fa46f commit 67c4f77

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/com/redislabs/redisgraph/RedisGraphAPI.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ public ResultSet query(String query) {
4949
}
5050

5151
/**
52-
* Delete the all graph
52+
* Deletes the entire graph
5353
*
54-
* @return
54+
* @return delete running time statistics
5555
*/
56-
public String deleteGraph() {
57-
try (Jedis conn = _conn()) {
56+
public String deleteGraph() {
57+
try (Jedis conn = _conn()) {
5858
return sendCommand(conn, Command.DELETE, graphId).getBulkReply();
59-
}
60-
}
59+
}
60+
}
6161

6262

6363
private BinaryClient sendCommand(Jedis conn, ProtocolCommand provider, String ...args) {

0 commit comments

Comments
 (0)