This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master by this push:
new 90dfb31a Minor fixes.
90dfb31a is described below
commit 90dfb31ae24537b300f6ccfd199f06e15cb1dc1d
Author: Sergey Kamov <[email protected]>
AuthorDate: Mon Apr 4 22:44:11 2022 +0300
Minor fixes.
---
nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipelineBuilder.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipelineBuilder.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipelineBuilder.java
index ca212503..6928e4b0 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipelineBuilder.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipelineBuilder.java
@@ -239,7 +239,7 @@ public class NCPipelineBuilder {
* @param entMapper
* @return This instance for call chaining.
*/
- public NCPipelineBuilder withEntitMapper(NCEntityMapper entMapper) {
+ public NCPipelineBuilder withEntityMapper(NCEntityMapper entMapper) {
Objects.requireNonNull(entMapper, "Entity mapper cannot be null.");
this.entMappers.add(entMapper);