From 4b268e6599b40d1fa9de11ae6c847b763d5bf8c1 Mon Sep 17 00:00:00 2001 From: ASP1234 Date: Thu, 23 Jun 2016 11:46:50 +0000 Subject: Minor fix --- data_structures_correct/Capacitor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data_structures_correct') diff --git a/data_structures_correct/Capacitor.js b/data_structures_correct/Capacitor.js index d0c9f0d..eae92f9 100644 --- a/data_structures_correct/Capacitor.js +++ b/data_structures_correct/Capacitor.js @@ -3,7 +3,7 @@ function Capacitor() { Capacitor.prototype.define = function Capacitor() { var model = scicos_model(); - var C = 0.01,v = 0; + var C = 0.01, v = 0; model.rpar = new ScilabDouble([C],[v]); model.sim = new ScilabString(["Capacitor"]); model.blocktype = new ScilabString(["c"]); @@ -28,4 +28,4 @@ function Capacitor() { Capacitor.prototype.details = function Capacitor() { return this.x; } -} \ No newline at end of file +} -- cgit