From 6f2ed10907d97c3ccd897abf1ea9e267f66965f1 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Sun, 1 Oct 2017 12:50:50 -0400 Subject: [PATCH] Remove question. --- Using-Specter-Recursively.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/Using-Specter-Recursively.md b/Using-Specter-Recursively.md index d5a6bd2..b0f3d25 100644 --- a/Using-Specter-Recursively.md +++ b/Using-Specter-Recursively.md @@ -53,8 +53,6 @@ The main way that Specter enables recursion is through the parameterized macro, You can see that there are three arguments, which match onto our list above. (They are, however, in a different order.) The `self-sym` is the name; the `params` are the optional input arguments; and the `path` is the body of the recursion. This path can be recursive, referencing itself by the `self-sym`. -(NOTE: QUESTION: Is there a reason why the self-sym is the second argument?) - Rather than providing a recursive function, `recursive-path` provides a recursive path that can be composed with other navigators. Accordingly, it is often useful - but not necessary - to define a recursive-path using `def`, so that it can be called in multiple places, not just the place where you initially need it. # Applications