Skip to content

Commit

Permalink
Update wdmodels.lib
Browse files Browse the repository at this point in the history
small fixes into quick start
  • Loading branch information
grammaton authored and sletz committed Jun 18, 2021
1 parent 5595b05 commit c3a6cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wdmodels.lib
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
//
// Second, the declared components and interconnection/structural adaptors (i.e. series, parallel, etc) are arranged into the connection tree which is produced from performing WD analysis on the modeled circuit. For example, to produce our first order RC lowpass circuit model, the following tree is declared:
//
// `tree_lowpass = vs1(i) : WD.series : (r1, c1)`
// `tree_lowpass = vs1 : wd.series : (r1, c1);`
//
// For more information on how to represent trees in Faust, see Trees in Faust.
//
// Finally, the tree is built using the the `buildtree` function. To build and compute our first order RC lowpass circuit model, we use:
//
// `process = buildtree(tree_lowpass);`
// `process = wd.buildtree(tree_lowpass);`
//
// More information about build functions, see Build Functions.
//
Expand Down

0 comments on commit c3a6cf7

Please sign in to comment.