Remove broken error make examples (#951)

This commit is contained in:
JT 2022-02-05 12:01:08 -05:00 committed by GitHub
parent 8a93548de2
commit c4858fb202
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,26 +65,14 @@ impl Command for ErrorMake {
} }
fn examples(&self) -> Vec<Example> { fn examples(&self) -> Vec<Example> {
vec![ vec![Example {
Example { description: "Create a custom error for a custom command",
description: "Creates a labeled error", example: r#"def foo [x] {
example: r#"{msg: "The message" , label: {start: 0, end: 141, text: "Helpful message here"}} | error make"#,
result: None,
},
Example {
description: "Creates a labeled error, using a call argument",
example: r#"error make {msg: "The message" , label: {start: 0, end: 141, text: "Helpful message here"}}"#,
result: None,
},
Example {
description: "Create a custom error for a custom command",
example: r#"def foo [x] {
let span = (metadata $x).span; let span = (metadata $x).span;
error make {msg: "this is fishy", label: {text: "fish right here", start: $span.start, end: $span.end } } error make {msg: "this is fishy", label: {text: "fish right here", start: $span.start, end: $span.end } }
}"#, }"#,
result: None, result: None,
}, }]
]
} }
} }