From da568e9760c9fe58c976b261936eff09d668eddf Mon Sep 17 00:00:00 2001 From: Arthur Wolf Date: Wed, 21 Feb 2024 12:57:33 +0100 Subject: [PATCH] Replace CommentExpressions with CommentExtensions, fix docs mistake --- content/en/docs/4.guides/15.comments.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/4.guides/15.comments.md b/content/en/docs/4.guides/15.comments.md index 83af5252..2fd0b953 100644 --- a/content/en/docs/4.guides/15.comments.md +++ b/content/en/docs/4.guides/15.comments.md @@ -63,12 +63,12 @@ where `[node.id]` refers to the nodes that are covered by this comment ## Selectable comments {#selectable} ```ts -import { CommentExpressions } from "rete-comment-plugin"; +import { CommentExtensions } from "rete-comment-plugin"; const selector = AreaExtensions.selector(); const accumulating = AreaExtensions.accumulateOnCtrl(); -CommentExpressions.selectable(comment, selector, accumulating); +CommentExtensions.selectable(comment, selector, accumulating); ``` ## Edit comment text {#edit-text}