diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-01-02 15:17:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 10:17:01 -0500 |
commit | 62465ca4ee93826cd901b021a7e97b58adea5879 (patch) | |
tree | 74f5d5627903794300307fa64bd38a7692a1ce05 /docs/contributing | |
parent | 41a4a34aee57a4690e5c1b9ba54b27a7035bac37 (diff) |
fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960)
Diffstat (limited to 'docs/contributing')
-rw-r--r-- | docs/contributing/style_guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contributing/style_guide.md b/docs/contributing/style_guide.md index d834ea91a..25e01b203 100644 --- a/docs/contributing/style_guide.md +++ b/docs/contributing/style_guide.md @@ -355,7 +355,7 @@ If a module is browser compatible, include the following in the JSDoc at the top of the module: ```ts -/** This module is browser compatible. */ +// This module is browser compatible. ``` Maintain browser compatibility for such a module by either not using the global |