Mark glob/grep as code blocks (#34628)

Release Notes:

- N/A
This commit is contained in:
Ben Brandt
2025-07-17 15:01:02 +00:00
committed by GitHub
parent 8e4555455c
commit b0eac4267d
+2 -2
View File
@@ -97,10 +97,10 @@ impl ClaudeTool {
}
Self::Write(None) => "Write".into(),
Self::Glob(Some(params)) => {
format!("Glob {params}")
format!("Glob `{params}`")
}
Self::Glob(None) => "Glob".into(),
Self::Grep(Some(params)) => params.to_string(),
Self::Grep(Some(params)) => format!("`{params}`"),
Self::Grep(None) => "Grep".into(),
Self::WebFetch(Some(params)) => format!("Fetch {}", params.url),
Self::WebFetch(None) => "Fetch".into(),