diff options
author | 2023-09-10 20:33:39 +0200 | |
---|---|---|
committer | 2023-09-10 11:33:39 -0700 | |
commit | 7121c1d6abac65d4a8feb4be5be69062f185c4fc (patch) | |
tree | 8b9d71961ede41bb520eeadc1f70052be4cf15aa | |
parent | 60dc76676c72e2090590dce0c1423d0925ff999d (diff) | |
download | bun-7121c1d6abac65d4a8feb4be5be69062f185c4fc.tar.gz bun-7121c1d6abac65d4a8feb4be5be69062f185c4fc.tar.zst bun-7121c1d6abac65d4a8feb4be5be69062f185c4fc.zip |
Update modules.md - Explain case-insensitivity (#4782)
-rw-r--r-- | docs/runtime/modules.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/modules.md b/docs/runtime/modules.md index 349fd3594..380903c6f 100644 --- a/docs/runtime/modules.md +++ b/docs/runtime/modules.md @@ -43,7 +43,7 @@ In this case, we are importing from `./hello`, a relative path with no extension - `./hello/index.json` - `./hello/index.mjs` -Import paths are case-insensitive. +Import paths are case-insensitive, meaning these are all valid imports: ```ts#index.ts import { hello } from "./hello"; |