We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a991a commit 7a95ea5Copy full SHA for 7a95ea5
scripts/mdbook-forc-documenter/src/commands.rs
@@ -26,9 +26,8 @@ pub fn possible_forc_commands() -> Vec<String> {
26
// End of commands section
27
break;
28
}
29
-
30
// Extract command name (first word of the line)
31
- if let Some(command) = line.trim().split_whitespace().next() {
+ if let Some(command) = line.split_whitespace().next() {
32
possible_commands.push(command.to_string());
33
34
0 commit comments