From 130a06953fb2e11c72fe4715fda7191f8b226857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stevo=20Slavi=C4=87?= Date: Thu, 5 Jun 2014 17:07:36 +0200 Subject: [PATCH] Corrected javadoc text This patch includes trivial javadoc text correction. --- .../orient/core/sql/query/OSQLAsynchQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/query/OSQLAsynchQuery.java b/core/src/main/java/com/orientechnologies/orient/core/sql/query/OSQLAsynchQuery.java index 4ecd1622ecb..222735833fd 100644 --- a/core/src/main/java/com/orientechnologies/orient/core/sql/query/OSQLAsynchQuery.java +++ b/core/src/main/java/com/orientechnologies/orient/core/sql/query/OSQLAsynchQuery.java @@ -21,7 +21,7 @@ import java.util.Map; /** - * SQL asynchronous query. When executed the caller does not wait the the execution, rather the listener will be called for each + * SQL asynchronous query. When executed the caller does not wait for the execution, rather the listener will be called for each * item found in the query. OSQLAsynchQuery has been built on top of this. NOTE: if you're working with remote databases don't * execute any remote call inside the callback function because the network channel is locked until the query command has finished. *