From 67f70a063486f99db1621687f9b71d7a9c8a8c97 Mon Sep 17 00:00:00 2001 From: Viktor Pavlik <160131789+Vikt0rPavlik@users.noreply.github.com> Date: Wed, 8 Jan 2025 20:04:19 +0100 Subject: [PATCH] Update debug_info.rs --- crates/cairo-lang-sierra/src/debug_info.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.