This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch NLPCRAFT-510
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/NLPCRAFT-510 by this push:
     new 97159842 Validation fixes.
97159842 is described below

commit 971598429e4a046c3a9c69819c33d15719937e30
Author: Sergey Kamov <[email protected]>
AuthorDate: Tue Aug 9 00:23:03 2022 +0300

    Validation fixes.
---
 .../main/scala/org/apache/nlpcraft/validation/NCFiredIntent.scala   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/nlpcraft/src/main/scala/org/apache/nlpcraft/validation/NCFiredIntent.scala 
b/nlpcraft/src/main/scala/org/apache/nlpcraft/validation/NCFiredIntent.scala
index aa49f2d8..47765b42 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/validation/NCFiredIntent.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/validation/NCFiredIntent.scala
@@ -5,7 +5,7 @@ import org.apache.nlpcraft.*
 /**
   * */
 trait NCFiredIntent:
-    type Arguments = List[List[NCEntity]]
+    type NCArguments = List[List[NCEntity]]
 
     /**
       *
@@ -15,9 +15,9 @@ trait NCFiredIntent:
     /**
       *
       * @return */
-    def getCallbackArguments: Arguments
+    def getCallbackArguments: NCArguments
 
     /**
       *
       * @return */
-    def getCallback: Arguments => NCResult
+    def getCallback: NCArguments => NCResult

Reply via email to