Skip to content

Commit

Permalink
Fix spec URLs for ArrayBuffer and DataView (#5516)
Browse files Browse the repository at this point in the history
The existing spec URLs in BCD for the ArrayBuffer and DataView object
incorrectly linked to the spec section for the constructors for those
objects. This change changes the spec URLs to link to the spec sections
for the objects themselves.
  • Loading branch information
sideshowbarker authored and Elchi3 committed Jan 20, 2020
1 parent 54bf979 commit f6fcfdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion javascript/builtins/ArrayBuffer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ArrayBuffer": {
"__compat": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer",
"spec_url": "https://tc39.es/ecma262/#sec-arraybuffer-constructor",
"spec_url": "https://tc39.es/ecma262/#sec-arraybuffer-objects",
"support": {
"chrome": {
"version_added": "7"
Expand Down
2 changes: 1 addition & 1 deletion javascript/builtins/DataView.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"DataView": {
"__compat": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView",
"spec_url": "https://tc39.es/ecma262/#sec-dataview-constructor",
"spec_url": "https://tc39.es/ecma262/#sec-dataview-objects",
"support": {
"chrome": {
"version_added": "9"
Expand Down

0 comments on commit f6fcfdc

Please sign in to comment.