Skip to content

Commit 83be3f9

Browse files
committed
docs: fix typos in documentation comments
1 parent a5e7775 commit 83be3f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/src/core/definitions/thing_description.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class ThingDescription {
148148
throw UnimplementedError();
149149
}
150150

151-
/// Converts this [ThingDescription] to a [Map] resembling a JSON objct.
151+
/// Converts this [ThingDescription] to a [Map] resembling a JSON object.
152152
// TODO: Revisit this for dynamic serialization
153153
Map<String, dynamic> toJson() => _rawThingDescription;
154154

lib/src/core/scripting_api/interaction_output.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ abstract interface class InteractionOutput {
2828
/// [InteractionOutput].
2929
DataSchema? get schema;
3030

31-
/// Asyncronously creates a [ByteBuffer] representation of the value of
31+
/// Asynchronously creates a [ByteBuffer] representation of the value of
3232
/// of the [InteractionOutput].
3333
///
3434
/// Follows the algorithm defined for the `arrayBuffer()` function in the

lib/src/core/scripting_api/wot.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ abstract interface class WoT {
5757
/// The [exposedThingInit] is a Thing Description which does not have to
5858
/// include all fields that are usually required for a TD.
5959
/// Missing information is added during the production of the [ExposedThing],
60-
/// based on the underlying impementation.
60+
/// based on the underlying implementation.
6161
Future<ExposedThing> produce(ExposedThingInit exposedThingInit);
6262

6363
/// Requests a [ThingDescription] from the given [url].

0 commit comments

Comments
 (0)