Skip to content

Commit

Permalink
Merge pull request tc39#16 from bashor/patch-1
Browse files Browse the repository at this point in the history
Remove unneeded semicolons at the end of mappings in examples
  • Loading branch information
littledan authored Oct 23, 2023
2 parents 45c0f20 + 55347c1 commit 40c7961
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source-map.bs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ following structure:
"sources": ["foo.js", "bar.js"],
"sourcesContent": [null, null],
"names": ["src", "maps", "are", "fun"],
"mappings": "A,AAAB;;ABCDE;",
"mappings": "A,AAAB;;ABCDE"
"ignoreList": [0]
}
```
Expand Down Expand Up @@ -284,7 +284,7 @@ an alternate representation of a map is supported:
"file": "section.js",
"sources": ["foo.js", "bar.js"],
"names": ["src", "maps", "are", "fun"],
"mappings": "AAAA,E;;ABCDE;"
"mappings": "AAAA,E;;ABCDE"
}
},
{
Expand All @@ -294,7 +294,7 @@ an alternate representation of a map is supported:
"file": "another_section.js",
"sources": ["more.js"],
"names": ["more", "is", "better"],
"mappings": "AAAA,E;AACA,C;ABCDE;"
"mappings": "AAAA,E;AACA,C;ABCDE"
}
}
]
Expand Down

0 comments on commit 40c7961

Please sign in to comment.