eecircuit-engine 1.5.2 → 1.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -27,8 +27,7 @@ await sim.start();
27
27
  Set your netlist. The netlist is same as ngspice netlist format.
28
28
 
29
29
  ```javascript
30
- const netlist = `
31
- Basic RLC circuit
30
+ const netlist = `Basic RLC circuit
32
31
  .include modelcard.CMOS90
33
32
 
34
33
  r vdd 2 100.0
@@ -40,8 +39,7 @@ vdd vdd 0 1.8
40
39
  vin 1 0 0 pulse (0 1.8 0 0.1 0.1 15 30)
41
40
  .tran 0.1 5
42
41
 
43
- .end
44
- `;
42
+ .end`;
45
43
 
46
44
  sim.setNetList(netlist);
47
45
  ```