Skip to content

Commit 62bc13b

Browse files
authored
[markdown, stream_transform] Fix deprecated usage of pkg:web (#2046)
1 parent f1a5e7a commit 62bc13b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/stream_transform/example/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void main() {
1616
.tap((v) {
1717
print('Saw: $v');
1818
}).forEach((v) {
19-
output.text = v;
19+
output.textContent = v;
2020
});
2121
}
2222

0 commit comments

Comments
 (0)