Skip to content

Commit

Permalink
Merge pull request #239 from yerodin/master
Browse files Browse the repository at this point in the history
#238 Convert path regex to PRCE2
  • Loading branch information
arteymix authored Nov 23, 2022
2 parents 00cdfc7 + a9474d1 commit 5b0e0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/valum-router.vala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace Valum {
// initialize default types
register_type ("int", /\d+/);
register_type ("string", /\w+/);
register_type ("path", /(?:\.?[\w-\s\/@+~])+/);
register_type ("path", /(?:\.?[\w\-\s\/@+~])+/);
}

/**
Expand Down

0 comments on commit 5b0e0eb

Please sign in to comment.