lib/grumlin/edge.rb in grumlin-0.11.0 vs lib/grumlin/edge.rb in grumlin-0.12.0
- old
+ new
@@ -16,10 +16,10 @@
def ==(other)
self.class == other.class && @label == other.label && @id == other.id
end
def inspect
- "e[#{@id}][#{@inV}-#{@label}->#{@outV}]"
+ "e[#{@id}][#{@outV}-#{@label}->#{@inV}]"
end
alias to_s inspect
end
end