Fix: Restore npm protocol specifier in import example

This commit is contained in:
2025-09-15 16:12:51 -07:00
parent d401574540
commit b48baa557b

View File

@@ -253,7 +253,7 @@ Modules are imported using the \`+\` and \`->\` operators. This allows for destr
\`\`\`javascript
// Import 'block1' and 'block2' (as 'alias2') from a module
+ "hi-lang@0.1/path/file.hi" -> { block1, block2: alias2 }
+ "npm://hi-lang@0.1/path/file.hi" -> { block1, block2: alias2 }
block1()
alias2("some value")