Skip to content

Commit 95b0765

Browse files
committed
remove extra trailing commas (#318)
1 parent d44f0a6 commit 95b0765

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/prelude/goroutines.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ var $send = function(chan, value) {
217217
if (chan.$closed) {
218218
$throwRuntimeError("send on closed channel");
219219
}
220-
},
220+
}
221221
};
222222
};
223223
var $recv = function(chan) {

compiler/prelude/prelude.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ var $pointerOfStructConversion = function(obj, type) {
318318
(function(fieldProp) {
319319
properties[fieldProp] = {
320320
get: function() { return obj[fieldProp]; },
321-
set: function(value) { obj[fieldProp] = value; },
321+
set: function(value) { obj[fieldProp] = value; }
322322
};
323323
})(type.elem.fields[i].prop);
324324
}

0 commit comments

Comments
 (0)