From 7908f4161177dbd1c37b2e977986bf526c273eac Mon Sep 17 00:00:00 2001 From: Andreas Kuczera Date: Tue, 20 Jun 2023 16:32:13 +0200 Subject: [PATCH] Update README.adoc --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index f1e4463..0f41047 100644 --- a/README.adoc +++ b/README.adoc @@ -23,7 +23,7 @@ CALL thm.characterChain('what a nice text') YIELD path RETURN path; match (t:Text) where t.text is not null with t -call thm.tokenChain(t.text) yield path return path; +call thm.characterChain(t.text) yield path return path; ----