aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jeroen van Rensen <46967616+jeroenvanrensen@users.noreply.github.com> 2023-09-10 20:33:39 +0200
committerGravatar GitHub <noreply@github.com> 2023-09-10 11:33:39 -0700
commit7121c1d6abac65d4a8feb4be5be69062f185c4fc (patch)
tree8b9d71961ede41bb520eeadc1f70052be4cf15aa
parent60dc76676c72e2090590dce0c1423d0925ff999d (diff)
downloadbun-7121c1d6abac65d4a8feb4be5be69062f185c4fc.tar.gz
bun-7121c1d6abac65d4a8feb4be5be69062f185c4fc.tar.zst
bun-7121c1d6abac65d4a8feb4be5be69062f185c4fc.zip
Update modules.md - Explain case-insensitivity (#4782)
-rw-r--r--docs/runtime/modules.md2
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";