lib/rgl/graphxml.rb in rgl-0.5.6 vs lib/rgl/graphxml.rb in rgl-0.5.7
- old
+ new
@@ -1,9 +1,9 @@
# graphxml.rb
#
# This file contains minimal support for creating RGL graphs from the GraphML
-# format (see http://www.graphdrawing.org/graphml). The main purpose is to
+# format (see http://graphml.graphdrawing.org/). The main purpose is to
# have a rich set of example graphs to have some more tests.
#
# See the examples directory, which contains a subdirectory _north_ with the
# Graph catalog GraphViz (see
# http://www.research.att.com/sw/tools/graphviz/refs.html).
@@ -46,10 +46,10 @@
end
end # class MutableGraphParser
# Initializes an RGL graph from a subset of the GraphML format given in
- # +source+ (see http://www.graphdrawing.org/graphml).
+ # +source+ (see http://graphml.graphdrawing.org/).
#
def from_graphxml(source)
listener = MutableGraphParser.new(self)
REXML::Document.parse_stream(source, listener)
self