diff --git a/NewGenTechniques/SourceMappingURL/README.md b/NewGenTechniques/SourceMappingURL/README.md index 3a4a99b..3247ab7 100644 --- a/NewGenTechniques/SourceMappingURL/README.md +++ b/NewGenTechniques/SourceMappingURL/README.md @@ -5,7 +5,7 @@ ```javascript function smap(url, data) { const script = document.createElement('script'); - script.textContent = `//# SourceMappingURL=${url}?data=${JSON.stringify(data)}`; + script.textContent = `//# sourceMappingURL=${url}?data=${JSON.stringify(data)}`; document.head.appendChild(script); script.remove(); }