diff options
Diffstat (limited to 'src/sexp')
-rw-r--r-- | src/sexp/step.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sexp/step.rs b/src/sexp/step.rs index f09c014..d66b1bd 100644 --- a/src/sexp/step.rs +++ b/src/sexp/step.rs @@ -199,12 +199,14 @@ impl SExp { /// ``` /// /// **Quotes** + /// /// If an s-expression should not be evaluated /// as a function, but it is instead to be treated /// as a list, `quote` can be used. /// With it as the operator, the rest of the list /// is evaluated to values, but they are not passed /// to the operator after that. + /// /// ```rust /// use myslip::sexp::{SExp::*, SLeaf::*, util::*}; /// assert_eq!( |