This is an automated email from the ASF dual-hosted git repository.
aradzinski pushed a commit to branch NLPCRAFT-296
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-296 by this push:
new 1d3ee30 Fixed examples links in Javadoc.
1d3ee30 is described below
commit 1d3ee309d68e45dcdf4bfe8e4e44da814cd922ad
Author: unknown <[email protected]>
AuthorDate: Thu Jun 3 18:04:01 2021 -0700
Fixed examples links in Javadoc.
---
.../src/main/scala/org/apache/nlpcraft/model/NCDialogFlowItem.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCElement.java | 4 ++--
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntent.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentMatch.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentRef.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSample.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSkip.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentTerm.java | 2 +-
.../src/main/scala/org/apache/nlpcraft/model/NCMacroProcessor.java | 4 ++--
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMetadata.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModel.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelAdapter.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFactory.java | 2 +-
.../src/main/scala/org/apache/nlpcraft/model/NCModelFileAdapter.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelView.java | 2 +-
nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCToken.java | 2 +-
.../main/scala/org/apache/nlpcraft/model/NCTokenPredicateContext.java | 2 +-
.../main/scala/org/apache/nlpcraft/model/NCTokenPredicateResult.java | 2 +-
.../apache/nlpcraft/model/factories/basic/NCBasicModelFactory.java | 2 +-
.../apache/nlpcraft/model/factories/spring/NCSpringModelFactory.java | 2 +-
20 files changed, 22 insertions(+), 22 deletions(-)
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCDialogFlowItem.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCDialogFlowItem.java
index acb4608..7486098 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCDialogFlowItem.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCDialogFlowItem.java
@@ -25,7 +25,7 @@ import java.util.*;
* of this interface is passed into a custom user-defined dialog flow match
method.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*/
public interface NCDialogFlowItem extends NCMetadata {
/**
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCElement.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCElement.java
index 7ec79b2..0b7b24d 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCElement.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCElement.java
@@ -29,7 +29,7 @@ import java.util.*;
* Such object can be abstract or have a physical existence.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCCustomParser
*/
@@ -270,7 +270,7 @@ public interface NCElement extends NCMetadata, Serializable
{
/**
* Gets the list of synonyms by which this model element will be
recognized by. Read more about
* many different forms of synonyms in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section
- * and review <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * and review <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
* <p>
* <b>JSON</b>
* <br>
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntent.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntent.java
index 79438ea..5aad071 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntent.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntent.java
@@ -30,7 +30,7 @@ import static java.lang.annotation.RetentionPolicy.*;
* can be bound to the same callback method, but only one callback method can
be bound with a given intent.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCIntentRef
* @see NCIntentTerm
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentMatch.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentMatch.java
index 512a7ed..50813ae 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentMatch.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentMatch.java
@@ -27,7 +27,7 @@ import java.util.*;
* If used, intent context must be the 1st formal parameter in intent callback.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCIntent
* @see NCIntentTerm
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentRef.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentRef.java
index af231f1..2130b86 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentRef.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentRef.java
@@ -28,7 +28,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
* but only one callback method can be bound with a given intent.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCIntent
* @see NCIntentTerm
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSample.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSample.java
index 75cd1e0..ec09899 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSample.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSample.java
@@ -58,7 +58,7 @@ import static java.lang.annotation.RetentionPolicy.*;
* </pre>
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCIntent
* @see NCIntentRef
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSkip.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSkip.java
index 6d48d3c..96fa3a0 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSkip.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentSkip.java
@@ -31,7 +31,7 @@ import org.apache.nlpcraft.common.*;
* not match then throwing this exception allows to try next best matching
intent, if any.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCIntent
* @see NCIntentTerm
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentTerm.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentTerm.java
index 7052e5f..7f548c0 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentTerm.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCIntentTerm.java
@@ -34,7 +34,7 @@ import static java.lang.annotation.RetentionPolicy.*;
* terms specified by this annotation.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCIntent
* @see NCIntentRef
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMacroProcessor.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMacroProcessor.java
index 5c87a43..e053152 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMacroProcessor.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMacroProcessor.java
@@ -30,7 +30,7 @@ import java.util.Set;
* developing NERs, visualizing synonyms in toolchains, etc.
* <p>
* Read full documentation on synonym macro DSL in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*/
public class NCMacroProcessor {
private final NCMacroJavaParserTrait impl = mkImpl();
@@ -50,7 +50,7 @@ public class NCMacroProcessor {
* Expands given macro DSL string.
* <p>
* Read full documentation on synonym macro DSL in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @param s Macro DSL string to expand.
* @return Set of macro expansions for a given macro DSL string.
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMetadata.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMetadata.java
index ce4b7b9..91c10f4 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMetadata.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCMetadata.java
@@ -24,7 +24,7 @@ import java.util.*;
* Provides support for mutable runtime-only metadata.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*/
public interface NCMetadata {
/**
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModel.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModel.java
index 7b4c39b..5dee025 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModel.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModel.java
@@ -38,7 +38,7 @@ package org.apache.nlpcraft.model;
* your data models - your entire model and all of its components are part of
your project's source code.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCModelAdapter
* @see NCModelFileAdapter
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelAdapter.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelAdapter.java
index a2d40ce..7390b50 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelAdapter.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelAdapter.java
@@ -22,7 +22,7 @@ package org.apache.nlpcraft.model;
* {@link NCModelFileAdapter}.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCModelFileAdapter
*/
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFactory.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFactory.java
index fb6ed03..c60277f 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFactory.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFactory.java
@@ -25,7 +25,7 @@ import java.util.*;
* data model externally, e.g. <a target=_
href="https://spring.io/">Spring</a>-based factory and configuration.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*/
public interface NCModelFactory {
/**
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFileAdapter.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFileAdapter.java
index f411d9e..c313bf7 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFileAdapter.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelFileAdapter.java
@@ -49,7 +49,7 @@ import java.util.stream.*;
* </ul>
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCModelAdapter
*/
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelView.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelView.java
index 16c161d..c82ddd2 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelView.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCModelView.java
@@ -26,7 +26,7 @@ import java.util.*;
* presentation when used with {@link NCModelFileAdapter} adapter.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCModel
* @see NCModelAdapter
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCToken.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCToken.java
index 22dad76..78e6266 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCToken.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCToken.java
@@ -40,7 +40,7 @@ import java.util.*;
* Data models provide their required tokens in {@link
NCModel#getEnabledBuiltInTokens()} method.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/data-model.html">Data Model</a> section and
review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCElement
* @see NCContext#getVariants()
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateContext.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateContext.java
index 283c836..a3dc6b2 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateContext.java
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateContext.java
@@ -23,7 +23,7 @@ import java.util.Optional;
* Context passed into custom user-defined IDL term token predicate.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCTokenPredicateResult
*/
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateResult.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateResult.java
index f1b6678..1887887 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateResult.java
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/NCTokenPredicateResult.java
@@ -21,7 +21,7 @@ package org.apache.nlpcraft.model;
* Result value of user-defined IDL term token predicate.
* <p>
* Read full documentation in <a target=_
href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a>
section and review
- * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
+ * <a target=_
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examples">examples</a>.
*
* @see NCTokenPredicateContext
*/
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/basic/NCBasicModelFactory.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/basic/NCBasicModelFactory.java
index cdbacbe..b007b1f 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/basic/NCBasicModelFactory.java
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/basic/NCBasicModelFactory.java
@@ -29,7 +29,7 @@ import java.util.*;
* This factory doesn't have any configuration properties and uses {@link
java.lang.reflect.Constructor#newInstance(Object...)} to construct {@link
NCModel}s.
* </p>
* Basic factory have to be specified in probe configuration. Here's
- * a <code>probe.conf</code> from <a target="github"
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/names">Names</a>
example
+ * a <code>probe.conf</code> from <a target="github"
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examplesnames">Names</a>
example
* using Spring-based factory:
* <pre class="brush:js, highlight: [11, 12, 13, 14, 15, 16]">
* nlpcraft {
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/spring/NCSpringModelFactory.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/spring/NCSpringModelFactory.java
index 1220761..81eb674 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/spring/NCSpringModelFactory.java
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/factories/spring/NCSpringModelFactory.java
@@ -34,7 +34,7 @@ import java.util.*;
* <li>{@value #XML_CONFIG_PROP} - path to an XML files with Spring bean
definitions</li>
* </ul>
* Spring factory have to be specified in probe configuration. Here's
- * a <code>probe.conf</code> from <a target="github"
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/names">Names</a>
example
+ * a <code>probe.conf</code> from <a target="github"
href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft-examplesnames">Names</a>
example
* using Spring-based factory:
* <pre class="brush:js, highlight: [11, 12, 13, 14, 15, 16]">
* nlpcraft {