From 6c3f2aa09c27f3cbdfe9a26955cebfae2dfe7858 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Wed, 26 Jun 2019 19:39:32 +0000 Subject: [PATCH] Fix typo --- architype.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/architype.js b/architype.js index 3d33108..30dea90 100644 --- a/architype.js +++ b/architype.js @@ -1051,7 +1051,7 @@ class Link extends EditorEntryBase { } let ret = []; - for (let ffrom of this.from) { + for (let from of this.from) { for (let to of this.to) { ret.push('"' + from.id + '" -> "' + to.id + '"' + label + ';'); }