From 3122ffda907885051c885ddce498800e7c68fe0c Mon Sep 17 00:00:00 2001 From: Kilian B <60846047+knowbased@users.noreply.github.com> Date: Thu, 23 Jul 2026 15:19:13 +0200 Subject: [PATCH] doc: update usage example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9149b5f..ecf441e 100644 --- a/README.md +++ b/README.md @@ -26,13 +26,13 @@ To use it, please ensure that you have installed the corresponding libraries for Normally, this has been automated for different operating systems. But for more details, you can have a look at this [blog-post][tree-sitter-blog]. -To use it in Pharo, you can check example below: +To use it in Pharo, you can check the example below: ```smalltalk -res := FASTTypescriptParser new getASTFromString: 'class SimpleClass { +res := FASTTypeScriptParser new parse: 'class SimpleClass { integerProperty = 1; doubleProperty = 1.2; - booleanProperty= true; + booleanProperty = true; stringProperty = "hello"; }'. ```