# HG changeset patch # User Paul Fisher # Date 1750698267 14400 # Node ID db167f96ba4621263a36f30f4777f4fa1e9214ad # Parent efc2b56c89284b28c6e20327e91836fb57ab1415 Replace todo! with unimplemented! in documentation. diff -r efc2b56c8928 -r db167f96ba46 src/conv.rs --- a/src/conv.rs Mon Jun 23 13:02:58 2025 -0400 +++ b/src/conv.rs Mon Jun 23 13:04:27 2025 -0400 @@ -255,7 +255,7 @@ /// /// fn my_terminal_prompt(messages: &[Message]) { /// // ... -/// # todo!() +/// # unimplemented!() /// } /// /// fn main() { @@ -309,27 +309,27 @@ /// impl SimpleConversation for MySimpleConvo { /// // ... /// # fn prompt(&mut self, request: &str) -> Result { -/// # todo!() +/// # unimplemented!() /// # } /// # /// # fn masked_prompt(&mut self, request: &str) -> Result { -/// # todo!() +/// # unimplemented!() /// # } /// # /// # fn error_msg(&mut self, message: &str) { -/// # todo!() +/// # unimplemented!() /// # } /// # /// # fn info_msg(&mut self, message: &str) { -/// # todo!() +/// # unimplemented!() /// # } /// # /// # fn radio_prompt(&mut self, request: &str) -> Result { -/// # todo!() +/// # unimplemented!() /// # } /// # /// # fn binary_prompt(&mut self, (data, data_type): (&[u8], u8)) -> Result { -/// # todo!() +/// # unimplemented!() /// # } /// } /// diff -r efc2b56c8928 -r db167f96ba46 src/handle.rs --- a/src/handle.rs Mon Jun 23 13:02:58 2025 -0400 +++ b/src/handle.rs Mon Jun 23 13:04:27 2025 -0400 @@ -69,7 +69,7 @@ /// ```no_run /// # use nonstick::{PamShared}; /// # use nonstick::logging::Level; - /// # let pam_hdl: Box = todo!(); + /// # let pam_hdl: Box = unimplemented!(); /// # let delay_ms = 100; /// # let url = "https://zombo.com"; /// // Usually, instead of calling this manually, just use the macros.