diff options
Diffstat (limited to 'src/sexp/mod.rs')
-rw-r--r-- | src/sexp/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sexp/mod.rs b/src/sexp/mod.rs index c920e41..087cb67 100644 --- a/src/sexp/mod.rs +++ b/src/sexp/mod.rs @@ -18,10 +18,12 @@ pub enum SLeaf { } /// An S-Expression; the defining structure of the language. +/// +/// This structure is not intended to correspond with +/// IETF-standardized s-expressions; they are only inspiration. #[derive(Debug)] #[derive(PartialEq)] pub enum SExp { SCons(Box<SExp>, Box<SExp>), Atom(SLeaf), } - |