@@ -318,14 +318,17 @@ control flow form :
318318
319319We won't include code samples here for the sake of brevity. The previous control flow graph is
320320specified in the form of a state machine, and implemented with the ` EFSM ` component combinator.
321+
322+ ![ demo] ( examples/volunteerApplication/assets/images/animated_demo.gif )
323+
321324 We refer however the curious reader to :
322325
323326- [ demo repo] ( https://github.com/brucou/component-combinators/tree/master/examples/volunteerApplication )
324327- [ The case for state machines in UI programming] ( http://brucou.github.io/projects/component-combinators/efsm---the-case-for-ui-programming/ )
325328- [ EFSM combinator - documentation] ( http://brucou.github.io/projects/component-combinators/efsm---documentation/ )
326329- [ EFSM combinator - example application/] ( http://brucou.github.io/projects/component-combinators/efsm---example-application/ ) .
327330
328- Let's attack dynamic lists .
331+ Let's continue with the combinator covering iteration logic .
329332
330333## Dynamically changing list of items
331334
@@ -373,7 +376,7 @@ Same as always, there is no gory stream-merging code in the way of understanding
373376logic. Furthermore, edge cases attached to the iteration logic are already conveniently taken care
374377 of.
375378
376- However, in a real application, the existing combinator list will never cover the full spectrum of
379+ However, in a real application, the existing combinator list might not cover the full spectrum of
377380combining logics (being that essentially infinite). Our library however seeks to cover most of the
378381** generic** needs arising. For those ** specific** needs not covered, our library also includes a
379382component combinator ** factory** , the same one from which all existing combinators are
0 commit comments