Skip to content

Commit d404fbc

Browse files
j55dmontogeek
authored andcommitted
docs(guides) Refer to specific polyfill reference (#2726)
Updates the wikipedia link to reference the web development polyfill article rather than the disambiguation page.
1 parent 75c8f10 commit d404fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/guides/shimming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The `webpack` compiler can understand modules written as ES2015 modules, CommonJ
2121

2222
W> __We don't recommend using globals!__ The whole concept behind webpack is to allow more modular front-end development. This means writing isolated modules that are well contained and do not rely on hidden dependencies (e.g. globals). Please use these features only when necessary.
2323

24-
Another instance where _shimming_ can be useful is when you want to [polyfill](https://en.wikipedia.org/wiki/Polyfill) browser functionality to support more users. In this case, you may only want to deliver those polyfills to the browsers that need patching (i.e. load them on demand).
24+
Another instance where _shimming_ can be useful is when you want to [polyfill](https://en.wikipedia.org/wiki/Polyfill_(programming)) browser functionality to support more users. In this case, you may only want to deliver those polyfills to the browsers that need patching (i.e. load them on demand).
2525

2626
The following article will walk through both of these use cases.
2727

0 commit comments

Comments
 (0)