We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's very obvious when you see this:
func pipeline(name string, f io.Reader) (*lingo.Dependency, error) { l := lexer.New(name, f) p := pos.New(pos.WithModel(posModel), pos.WithCluster(clusters), pos.WithStemmer(stemmer{}), pos.WithLemmatizer(fixer{})) d := dep.New(depModel) // set up pipeline p.Input = l.Output d.Input = p.Output go l.Run() go p.Run() go d.Run() select { case err := <-l.Errors: case err := <-d.Error: // should be named "Errors" case dep := <-d.Output: return dep, nil } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's very obvious when you see this:
The text was updated successfully, but these errors were encountered: