From 52278435f775347456d2c468b0ff70592c4be03e Mon Sep 17 00:00:00 2001 From: Andre Luiz de Senna Date: Tue, 14 Nov 2023 10:40:32 -0300 Subject: [PATCH] Update README.md Minor change to rename query() to pattern_matcher_query() after PR #32 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e5e11290..2c9676bc 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ This way you don't need anything just instantiate the class as shown below: expression = Link("Evaluation", ordered=True, targets=[Variable("V1"), Variable("V2")]) - resp = api.query(expression, {'return_type': QueryOutputFormat.JSON, 'toplevel_only': True}) + resp = api.pattern_matcher_query(expression, {'return_type': QueryOutputFormat.JSON, 'toplevel_only': True}) print(resp) ``` @@ -238,4 +238,4 @@ You can run the command below to run the unit tests ```bash make test-coverage -``` \ No newline at end of file +```