diff options
Diffstat (limited to 'core/path/filepath')
| -rw-r--r-- | core/path/filepath/path.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/path/filepath/path.odin b/core/path/filepath/path.odin index e23183b02..d23fa1ff1 100644 --- a/core/path/filepath/path.odin +++ b/core/path/filepath/path.odin @@ -1,5 +1,5 @@ -// The path/filepath package uses either forward slashes or backslashes depending on the operating system -// To process paths such as URLs that depend on forward slashes regardless of the OS, use the path package +// package filepath package uses either forward slashes or backslashes depending on the operating system. +// To process paths such as URLs that depend on forward slashes regardless of the OS, use the slashpath package. package filepath import "base:runtime" |