diff options
author | 2023-09-12 22:14:26 -0400 | |
---|---|---|
committer | 2023-09-12 19:14:26 -0700 | |
commit | 3b2c0941e4b418dcf2bfbc5117da76338f45a90e (patch) | |
tree | fe41df17fad887130ab441b12aef6f7c26f460ac | |
parent | 8d3829114e378f2140629fcc565cdafff929c0b9 (diff) | |
download | bun-3b2c0941e4b418dcf2bfbc5117da76338f45a90e.tar.gz bun-3b2c0941e4b418dcf2bfbc5117da76338f45a90e.tar.zst bun-3b2c0941e4b418dcf2bfbc5117da76338f45a90e.zip |
docs: fix typo in import.meta.resolve (#5146)
-rw-r--r-- | docs/api/import-meta.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/import-meta.md b/docs/api/import-meta.md index 3c22308ce..37f35884d 100644 --- a/docs/api/import-meta.md +++ b/docs/api/import-meta.md @@ -39,7 +39,7 @@ import.meta.resolveSync("zod") --- - `import.meta.resolve{Sync}` -- Resolve a module specifier (e.g. `"zod"` or `"./file.tsx`) to an absolute path. While file would be imported if the specifier were imported from this file? +- Resolve a module specifier (e.g. `"zod"` or `"./file.tsx"`) to an absolute path. While file would be imported if the specifier were imported from this file? ```ts import.meta.resolveSync("zod"); |