| Index: bin/function_size_analysis.dart
|
| diff --git a/bin/function_size_analysis.dart b/bin/function_size_analysis.dart
|
| index 0de3db42e74f87405bb8fe07fbc4a30e00997a60..3606310c1102e09708e72ee8dc75c07ff1e89053 100644
|
| --- a/bin/function_size_analysis.dart
|
| +++ b/bin/function_size_analysis.dart
|
| @@ -31,10 +31,10 @@ showCodeDistribution(AllInfo info,
|
| // Compute a graph from the dependencies in [info].
|
| Graph<Info> graph = graphFromInfo(info);
|
|
|
| - // Compute the strongest connected components and calculate their size.
|
| + // Compute the strongly connected components and calculate their size.
|
| var components = graph.computeTopologicalSort();
|
| print('total elements: ${graph.nodes.length}');
|
| - print('total strongest connected components: ${components.length}');
|
| + print('total strongly connected components: ${components.length}');
|
| var maxS = 0;
|
| var totalCount = graph.nodeCount;
|
| var minS = totalCount;
|
|
|