diff --git a/crates/anstream/src/_macros.rs b/crates/anstream/src/_macros.rs index 71d4ce68..92595ef4 100644 --- a/crates/anstream/src/_macros.rs +++ b/crates/anstream/src/_macros.rs @@ -299,7 +299,7 @@ macro_rules! eprintln { /// represent an anticipated runtime failure mode of that computation, `Err(E)`. /// `Result` is used alongside user defined types which represent the various /// anticipated runtime failure modes that the associated computation could -/// encounter. `Result` must be propagated manually, often with the the help of the +/// encounter. `Result` must be propagated manually, often with the help of the /// `?` operator and `Try` trait, and they must be reported manually, often with /// the help of the `Error` trait. /// diff --git a/crates/anstyle-svg/src/lib.rs b/crates/anstyle-svg/src/lib.rs index 12b7f097..dc93635a 100644 --- a/crates/anstyle-svg/src/lib.rs +++ b/crates/anstyle-svg/src/lib.rs @@ -21,7 +21,7 @@ pub use anstyle_lossy::palette::Palette; pub use anstyle_lossy::palette::VGA; pub use anstyle_lossy::palette::WIN10_CONSOLE; -/// Define the terminal-like settings for rendering outpu +/// Define the terminal-like settings for rendering output #[derive(Copy, Clone, Debug)] pub struct Term { palette: Palette,