diff --git a/src/intcox.rs b/src/intcox.rs index b56f1df..4aa11f4 100644 --- a/src/intcox.rs +++ b/src/intcox.rs @@ -43,11 +43,11 @@ pub struct IntCoxArgs { #[arg(long, value_enum, default_value="text")] output: OutputFormat, - /// Maximum number of E-M iterations to attempt + /// Maximum number of iterations to attempt #[arg(long, default_value="1000")] max_iterations: u32, - /// Terminate E-M algorithm when the absolute change in log-likelihood is less than this tolerance + /// Terminate algorithm when the absolute change in log-likelihood is less than this tolerance #[arg(long, default_value="0.01")] ll_tolerance: f64, }