aboutsummaryrefslogtreecommitdiff
path: root/src/clojure
diff options
context:
space:
mode:
authorJeffrey Straszheim <straszheimjeffrey@gmail.com>2009-02-24 03:59:10 +0000
committerJeffrey Straszheim <straszheimjeffrey@gmail.com>2009-02-24 03:59:10 +0000
commitda4d225c636dc08323a985cc9696b6d95c61aa29 (patch)
tree56aefcd8c366175fa6317b4d6a88e852f2d670c4 /src/clojure
parent2f58c67cbbf38b7530dc374af68c44854aa4a1c9 (diff)
Fixed comment
Diffstat (limited to 'src/clojure')
-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."