From 43c0ca72b11ccb0ba9ee53a513e662b6ac70b0bd Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Fri, 24 May 2024 13:12:45 +0200 Subject: [PATCH] docs(scripting_api): fix typo in DataSchemaValue documentation --- lib/src/core/scripting_api/data_schema_value.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/core/scripting_api/data_schema_value.dart b/lib/src/core/scripting_api/data_schema_value.dart index dcf7cb02..b7f6ffb6 100644 --- a/lib/src/core/scripting_api/data_schema_value.dart +++ b/lib/src/core/scripting_api/data_schema_value.dart @@ -48,7 +48,7 @@ sealed class DataSchemaValue { static ObjectValue fromObject(Map value) => ObjectValue._fromValue(value); - /// Tries to instatiate a [DataSchemaValue] from a raw [value]. + /// Tries to instantiate a [DataSchemaValue] from a raw [value]. /// /// If the [value] is a non-valid data type, the method returns `null` /// instead.