Merge pull request #33 from brian-carroll/master

Fix concat bug
This commit is contained in:
Matthew Griffith 2021-01-19 20:28:41 -05:00 committed by GitHub
commit 804a3b77f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ var $elm$core$List$concat = function (lists) {
end = next;
}
}
end.b = lists;
end.b = lists.a;
return tmp.b;
};