diff --git a/crates/cairo-lang-sierra/src/debug_info.rs b/crates/cairo-lang-sierra/src/debug_info.rs index b6d57a676f3..3f571b5adbb 100644 --- a/crates/cairo-lang-sierra/src/debug_info.rs +++ b/crates/cairo-lang-sierra/src/debug_info.rs @@ -31,7 +31,7 @@ pub struct DebugInfo { deserialize_with = "deserialize_map::" )] pub user_func_names: HashMap, - /// Non-crucial information about the program, for use by external libraries and tool. + /// Non-crucial information about the program, for use by external libraries and tools. /// /// See [`Annotations`] type documentation for more information about this field. #[serde(default, skip_serializing_if = "Annotations::is_empty")] @@ -41,7 +41,7 @@ pub struct DebugInfo { pub executables: HashMap>, } -/// Store for non-crucial information about the program, for use by external libraries and tool. +/// Store for non-crucial information about the program, for use by external libraries and tools. /// /// Keys represent tool namespaces, and values are tool-specific annotations themselves. /// Annotation values are JSON values, so they can be arbitrarily complex.