diff options
author | 2023-09-08 21:10:17 +0200 | |
---|---|---|
committer | 2023-09-08 12:10:17 -0700 | |
commit | 0887825f54663b354d6562db4dbb47ed15e5d164 (patch) | |
tree | 3a913a61eeee8bb2af3ac7ad34ff68533ba1a3f1 | |
parent | 6d02b18680e824dd91d29c62af71bae57969aa09 (diff) | |
download | bun-0887825f54663b354d6562db4dbb47ed15e5d164.tar.gz bun-0887825f54663b354d6562db4dbb47ed15e5d164.tar.zst bun-0887825f54663b354d6562db4dbb47ed15e5d164.zip |
Fix code typo in transpiler.md (#4604)
There are some extra closing brackets at the end of the `scanImports` example. These cause a syntax error ("Unterminated string literal")
-rw-r--r-- | docs/api/transpiler.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/api/transpiler.md b/docs/api/transpiler.md index bfe0b5ee9..6d81a1ef9 100644 --- a/docs/api/transpiler.md +++ b/docs/api/transpiler.md @@ -160,7 +160,6 @@ export const name = "hello"; `; const result = transpiler.scanImports(code); -`); ``` ```json#Results |