aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/clojure/contrib/graph.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/graph.clj b/src/clojure/contrib/graph.clj
index e42aa852..ac18e03e 100644
--- a/src/clojure/contrib/graph.clj
+++ b/src/clojure/contrib/graph.clj
@@ -20,8 +20,8 @@
(defstruct directed-graph
:nodes ; The nodes of the graph, a collection
- :neighbors) ; A function that, given a node a collection neighbor
- ; nodes.
+ :neighbors) ; A function that, given a node returns a collection
+ ; neighbor nodes.
(defn get-neighbors
"Get the neighbors of a node."