Skip to content

Commit

Permalink
Fix code example typo
Browse files Browse the repository at this point in the history
Closes #255.
  • Loading branch information
domenic committed Oct 14, 2021
1 parent 45e88bf commit 4ce4ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ const im = document.createElement('script');
im.type = 'importmap';
im.textContent = JSON.stringify({
imports: {
'my-library': Math.random() > 0.5 ? '/my-awesome-library.mjs' : '/my-rad-library.mjs';
'my-library': Math.random() > 0.5 ? '/my-awesome-library.mjs' : '/my-rad-library.mjs'
}
});
document.currentScript.after(im);
Expand Down

0 comments on commit 4ce4ad0

Please sign in to comment.