docs(examples): keep inspector copy target-oriented

Replace remaining beginner-facing wire contract wording in the inspector partial with generated target/effect vocabulary and guard against regressions.

req: dx/006

req: examples/003
This commit is contained in:
slhx agent
2026-06-02 07:30:30 +02:00
parent 795abdbc81
commit dfd8020617
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -684,7 +684,7 @@ mod tests {
assert_eq!(document.select(&selector(".inspector-row")).count(), 3);
assert!(document
.select(&selector("code"))
.any(|code| code.text().collect::<String>().contains("typed update batch")));
.any(|code| code.text().collect::<String>().contains("targets::*")));
}
// req: html_safety/002 req: view/001 req: test/005