From 258881dbb2ad88c6d676ee71f00deba2b2f50c01 Mon Sep 17 00:00:00 2001 From: emma Date: Thu, 1 Feb 2024 23:35:49 -0700 Subject: [PATCH] rpn(1): minor change --- src/rpn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpn.rs b/src/rpn.rs index cadffa2..eede26b 100644 --- a/src/rpn.rs +++ b/src/rpn.rs @@ -57,7 +57,7 @@ extern crate sysexits; use sysexits::EX_DATAERR; #[derive(Clone, Copy, PartialEq, PartialOrd, Debug)] -// enum CalcType is a type containing operations used in the calculator. +// enum CalcType is a type containing operations used in the calculator enum CalcType { Add, Subtract,