diff --git a/crates/benda/src/types/user_adt.rs b/crates/benda/src/types/user_adt.rs index 16c3a0c..c3c6a1f 100644 --- a/crates/benda/src/types/user_adt.rs +++ b/crates/benda/src/types/user_adt.rs @@ -46,7 +46,7 @@ fn num_to_i32(num: &Num) -> Option { } } -/// Represents parsed terms from Bend +/// Represents parsed terms from Bend lambda encoding. /// /// This enum is used to represent different types of terms that can be parsed from Bend expressions. /// @@ -56,11 +56,11 @@ pub enum TermParse { I32(i32), /// - A constructor for an ADT Ctr(Box), - /// - Any Python object + /// - A Python object representing an argument Any(Py), - /// - A vector of Python objects with an associated constructor + /// - A vector of Python objects representing arguments with an associated constructor Vec(Box, Vec>), - /// A vector of Python objects representing arguments + /// - A vector of Python objects representing arguments Args(Vec>), }