tamer: asg::graph::object::expr::ExprOp: Doc comment fix {//=>///}

DEV-13708
main
Mike Gerwitz 2023-03-09 21:51:54 -05:00
parent e6325c4c1d
commit b9f0fada51
1 changed files with 4 additions and 4 deletions

View File

@ -90,13 +90,13 @@ impl Display for Expr {
/// as was the original plan with TAMER.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum ExprOp {
// Summation (+)
/// Summation (+)
Sum,
// Product (×)
/// Product (×)
Product,
// Logical conjunction (∧)
/// Logical conjunction (∧)
Conj,
// Logical disjunction ()
/// Logical disjunction ()
Disj,
}