Skip to content

Commit 41ee6d7

Browse files
committed
style(context.dart): fix typo in private method name
1 parent 83be3f9 commit 41ee6d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/core/definitions/context.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const _tdVersion11ContextUrl = "https://www.w3.org/2022/wot/td/v1.1";
1616
final class Context {
1717
/// Creates a new context from a list of [contextEntries].
1818
Context(this.contextEntries)
19-
: prefixMapping = _createPrefixMappping(contextEntries);
19+
: prefixMapping = _createPrefixMapping(contextEntries);
2020

2121
/// Determines the default prefix URL via the procedure described in
2222
/// [section 5.3.1.1] of the Thing Description 1.1 specification.
@@ -57,7 +57,7 @@ final class Context {
5757
return firstContextValue;
5858
}
5959

60-
static PrefixMapping _createPrefixMappping(
60+
static PrefixMapping _createPrefixMapping(
6161
List<ContextEntry> contextEntries,
6262
) {
6363
final defaultPrefixValue = _determineDefaultPrefix(contextEntries);

0 commit comments

Comments
 (0)