You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2020/12/08 02:06:47 UTC

[incubator-nlpcraft-java-client] branch master updated: fix invalid usage tag & [https://issues.apache.org/jira/browse/NLPCRAFT-175]

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

aradzinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-java-client.git


The following commit(s) were added to refs/heads/master by this push:
     new de64d8f  fix invalid usage tag & [https://issues.apache.org/jira/browse/NLPCRAFT-175]
     new f908838  Merge pull request #2 from sreev/fix-tag
de64d8f is described below

commit de64d8f4cd6e8008e875136e32577d58934f23d1
Author: Sree Vaddi <44...@users.noreply.github.com>
AuthorDate: Sun Nov 22 17:45:00 2020 -0800

    fix invalid usage tag & [https://issues.apache.org/jira/browse/NLPCRAFT-175]
    
    Signed-off-by: Sree Vaddi <44...@users.noreply.github.com>
---
 src/main/java/org/apache/nlpcraft/client/NCClient.java        | 2 +-
 src/main/java/org/apache/nlpcraft/client/NCClientBuilder.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/nlpcraft/client/NCClient.java b/src/main/java/org/apache/nlpcraft/client/NCClient.java
index 79c7432..ed25952 100644
--- a/src/main/java/org/apache/nlpcraft/client/NCClient.java
+++ b/src/main/java/org/apache/nlpcraft/client/NCClient.java
@@ -49,7 +49,7 @@ import java.util.*;
  *     // Perform any necessary calls...
  *     NCResult res = cli.askSync("my.model.id", txt);
  *
- *     // Close client & sign out at the end.
+ *     // Close client &amp; sign out at the end.
  *     cli.close();
  * </pre>
  * 
diff --git a/src/main/java/org/apache/nlpcraft/client/NCClientBuilder.java b/src/main/java/org/apache/nlpcraft/client/NCClientBuilder.java
index b004425..c0a238b 100644
--- a/src/main/java/org/apache/nlpcraft/client/NCClientBuilder.java
+++ b/src/main/java/org/apache/nlpcraft/client/NCClientBuilder.java
@@ -40,7 +40,7 @@ import java.util.function.Supplier;
  *     // Perform any necessary calls...
  *     NCResult res = cli.askSync("my.model.id", txt);
  *
- *     // Close client & sign out at the end.
+ *     // Close client &amp; sign out at the end.
  *     cli.close();
  * </pre>
  */