From 312c6d3a850b507717dd2b7655422424907c7245 Mon Sep 17 00:00:00 2001 From: lnd212 Date: Tue, 26 Oct 2021 02:21:56 +0400 Subject: [PATCH] Small fix --- bin/src/graph.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/src/graph.dart b/bin/src/graph.dart index 95491e3..581b7b6 100644 --- a/bin/src/graph.dart +++ b/bin/src/graph.dart @@ -83,7 +83,7 @@ class Dot { Dot.clone(Dot a) { _name = a.getName(); num = a.num; - _ln = a._ln; + _ln = a.getL(); } }