diff options
| author | gingerBill <bill@gingerbill.org> | 2020-09-26 20:17:54 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-09-26 20:17:54 +0100 |
| commit | 0bd38ba1f6281046692bc7344c10d287ea6ec3ef (patch) | |
| tree | 9b04c0f7aa61d278e23e22c334948630cbbdfa2f /core/path/filepath | |
| parent | 49eaeccd846868bfa0088f88da190b3ac32799fb (diff) | |
Add some comments to explain what the differences between packages path and path/filepath
Diffstat (limited to 'core/path/filepath')
| -rw-r--r-- | core/path/filepath/path.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/path/filepath/path.odin b/core/path/filepath/path.odin index f2dbedf1f..283eb3a9e 100644 --- a/core/path/filepath/path.odin +++ b/core/path/filepath/path.odin @@ -1,3 +1,5 @@ +// The path/filepath package uses either forward slashes or backslashes depending on the operating system +// To process paths usch as URLs that depend on forward slashes regardless of the OS, use the path package package filepath import "core:os" |