Skip to content

Commit 8771730

Browse files
committed
minor refactor
1 parent 11f5ebf commit 8771730

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/non_linear/graphs/graph.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import 'package:test/test.dart';
22

33
import '../../linear/queue/queue.dart';
44

5-
/// An undirected GRAPH using the adjacency list representation.
5+
/// An Undirected Graph using the adjacency list representation.
66
class Graph<T> {
7-
/// Creates an undirected GRAPH using the adjacency list representation.
7+
/// Creates an Undirected Graph using the adjacency list representation.
88
Graph();
99

1010
final Map<T, List<T>> _adjacencyList = {};

0 commit comments

Comments
 (0)