aboutsummaryrefslogtreecommitdiff
path: root/core/path
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-11-18 23:22:27 +0000
committergingerBill <bill@gingerbill.org>2020-11-18 23:22:27 +0000
commit9408eb9580c1663195089ba18a53b704b382e40a (patch)
tree0eca41bddb69ff61151bce6b6369c8681783458d /core/path
parentef2f204c58f355daf516c25e6e59dcd60bce444d (diff)
Update `odin doc` to support multiple package outputs by passing multiple paths; Replace `-all` with `-short`
Example: odin doc core/path core/path/filepath
Diffstat (limited to 'core/path')
-rw-r--r--core/path/match.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/path/match.odin b/core/path/match.odin
index 555c1b05c..e77bf79c3 100644
--- a/core/path/match.odin
+++ b/core/path/match.odin
@@ -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 {