Skip to content

Commit

Permalink
style(thing_discovery.dart): improve variable naming in closure
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed May 21, 2024
1 parent d7961d6 commit 6ccd69d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/core/implementation/thing_discovery.dart
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class ThingDiscovery extends Stream<ThingDescription>
?.contains(resourceType.asCoreLinkFormatAttributeValue()) ??
false,
)
.map((weblink) => Uri.tryParse(weblink.uri))
.map((webLink) => Uri.tryParse(webLink.uri))
.whereType<Uri>()
.map((uri) => uri.toAbsoluteUri(sourceUri));
}
Expand Down

0 comments on commit 6ccd69d

Please sign in to comment.