diff --git a/README.md b/README.md index 76eab48..c59f9eb 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Use parentheses to group patterns: # Roadmap - * Reuse Fish's parsing of man pages to generate completions (https://github.com/fish-shell/fish-shell/blob/946ecf235c002cff596fbbb2c03f9693c30744da/share/tools/create_manpage_completions.py). + * Generate grammars automatically based on man pages (https://github.com/fish-shell/fish-shell/blob/946ecf235c002cff596fbbb2c03f9693c30744da/share/tools/create_manpage_completions.py). * Show completion hints in ZSH and Fish diff --git a/src/main.rs b/src/main.rs index 4792f73..daded67 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,7 +3,7 @@ use std::io::Write; use bumpalo::Bump; use clap::Parser; -use complgen::{Result}; +use complgen::Result; use crate::dfa::DirectDFA; use crate::grammar::parse;