Skip to content

Commit

Permalink
Fix angle brackets in doc comments (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Aug 26, 2024
1 parent 90743bc commit 3b85d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'package:test/test.dart';

/// Converts a [Stream<List<int>>] to a flat byte future.
/// Converts a [Stream]`<List<int>>` to a flat byte future.
Future<List<int>> byteStreamToList(Stream<List<int>> stream) =>
stream.fold(<int>[], (buffer, chunk) {
buffer.addAll(chunk);
Expand Down

0 comments on commit 3b85d38

Please sign in to comment.