diff options
author | ASP1234 | 2016-06-23 11:46:50 +0000 |
---|---|---|
committer | ASP1234 | 2016-06-23 11:46:50 +0000 |
commit | 4b268e6599b40d1fa9de11ae6c847b763d5bf8c1 (patch) | |
tree | 0e79a0941cbb12c8c982784545e53ad46b56a813 /data_structures_correct | |
parent | 13bdf2567a765a7230abb2130117e67b7c521e34 (diff) | |
download | xcos-on-web-4b268e6599b40d1fa9de11ae6c847b763d5bf8c1.tar.gz xcos-on-web-4b268e6599b40d1fa9de11ae6c847b763d5bf8c1.tar.bz2 xcos-on-web-4b268e6599b40d1fa9de11ae6c847b763d5bf8c1.zip |
Minor fix
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 +} |