Categorification: move Path commands out of the default category (#9937)

Path commands were incorrectly located in the default category...

This PR moves all of the *Path* commands into their own Category called
*Path*
This commit is contained in:
Michael Angerman
2023-08-06 21:03:23 -07:00
committed by GitHub
parent c8f3799c20
commit bb6335830a
11 changed files with 46 additions and 32 deletions

View File

@ -60,6 +60,7 @@ pub enum Category {
Math,
Misc,
Network,
Path,
Platform,
Random,
Shells,
@ -91,6 +92,7 @@ impl std::fmt::Display for Category {
Category::Math => "math",
Category::Misc => "misc",
Category::Network => "network",
Category::Path => "path",
Category::Platform => "platform",
Category::Random => "random",
Category::Shells => "shells",