From f891cad8feefa9fd9782bbcb6dfd7ea110b2d796 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Fri, 24 May 2024 11:34:18 +0200 Subject: [PATCH] docs(scripting_api): fix typo in Subscription interface --- lib/src/core/scripting_api/subscription.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/core/scripting_api/subscription.dart b/lib/src/core/scripting_api/subscription.dart index 449f165f..fcb84fc3 100644 --- a/lib/src/core/scripting_api/subscription.dart +++ b/lib/src/core/scripting_api/subscription.dart @@ -27,7 +27,7 @@ enum SubscriptionType { /// Represents a subscription to Property change and Event interactions. abstract interface class Subscription { - /// Denotes whether the subsciption is active, i.e. it is not stopped because + /// Denotes whether the subscription is active, i.e. it is not stopped because /// of an error or because of invocation of the [stop] method. bool get active;