Use "continue" instead of "break" to clarify loop flow.

When dropping tokens, the switch case had a "break" to document the intended
no-op on that branch. Often a break-only case clause is an erroneous attempt to
exit an enclosing loop, so linters flag it.

Without change of behaviour, use "continue" instead.
2 files changed
tree: aeb936a539afd6a3926c3ef1ef1d7c0a15686fd0
  1. go.mod
  2. LICENSE
  3. README.md
  4. shell.go
  5. shell_test.go
README.md

shell

http://godoc.org/bitbucket.org/creachadair/shell

The shell package implements basic shell command-line splitting.