diff options
Diffstat (limited to 'data_structures_correct')
-rw-r--r-- | data_structures_correct/Capacitor.js | 4 |
1 files changed, 2 insertions, 2 deletions
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 +} |