Fix invalid variable name in input command docs (#6716)

This commit is contained in:
HoLLy
2022-10-13 19:42:24 +02:00
committed by GitHub
parent 90ba39184a
commit 9446e3960b

View File

@ -149,7 +149,7 @@ impl Command for Input {
fn examples(&self) -> Vec<Example> {
vec![Example {
description: "Get input from the user, and assign to a variable",
example: "let user-input = (input)",
example: "let user_input = (input)",
result: None,
}]
}