Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Replace <> with () in comment (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamappelbe committed Aug 12, 2024
1 parent 3594abf commit 2f49644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bool platformVersionCheck(int minMajor, int minMinor) {
return major > minMajor || (major == minMajor && minor >= minMinor);
}

/// Returns a mapping of <URL: <function_name: hit_count>> from [sources].
/// Returns a mapping of (URL: (function_name: hit_count)) from [sources].
Map<String, Map<String, int>> functionInfoFromSources(
Map<String, List<Map<dynamic, dynamic>>> sources,
) {
Expand Down

0 comments on commit 2f49644

Please sign in to comment.