mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-19 13:00:28 +00:00
Update odin doc to support multiple package outputs by passing multiple paths; Replace -all with -short
Example: odin doc core/path core/path/filepath
This commit is contained in:
@@ -28,8 +28,6 @@ Match_Error :: enum {
|
||||
// match requires that the pattern matches the entirety of the name, not just a substring
|
||||
// The only possible error returned is .Syntax_Error
|
||||
//
|
||||
// NOTE(bill): This is effectively the shell pattern matching system found
|
||||
//
|
||||
match :: proc(pattern, name: string) -> (matched: bool, err: Match_Error) {
|
||||
pattern, name := pattern, name;
|
||||
pattern_loop: for len(pattern) > 0 {
|
||||
|
||||
Reference in New Issue
Block a user