Issue with "Promise": missing space in note
See original GitHub issueMDN URL: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
What information was incorrect, unhelpful, or incomplete?
The page says:
Note:This feature is available in Web Workers.
There’s no space between “Note:” and the note.
What did you expect to see?
A space.
Did you test this? If so, how?
I found that it boils down to https://github.com/mdn/yari/blob/main/kumascript/macros/Note.ejs and thus probably affects all pages using notes, but I’m not sure about unintended consequences of adding a space there. Maybe an extra space for certain languages in https://github.com/mdn/yari/blob/main/kumascript/macros/NoteStart.ejs would be correct?
MDN Content page report details
- Folder:
en-us/web/javascript/reference/global_objects/promise
- MDN URL: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
- GitHub URL: https://github.com/mdn/content/blob/main/files/en-us/web/javascript/reference/global_objects/promise/index.html
- Last commit: https://github.com/mdn/content/commit/1712a1f29ae167ddfbf7ffeabc8573c41088566d
- Document last modified: 2021-03-16T05:30:25.000Z
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (8 by maintainers)
Top Results From Across the Web
ESlint error, Type '() => Promise<void>' is missing the ...
Issue is in function declaration. You need to give the return type as Promise<void> . export const connectDb = async (): Promise<void> =>...
Read more >How to Find and Recover Missing Space on Hard Drive in ...
What Takes Up the Missing Space - 6 Causes · 1. Hard Disk Manufacturers Does not Give Capacity They Promise · 2. Hidden...
Read more >Change the spaces between text - Microsoft Support
Change spacing between characters, kern fonts, stretch or scale text, and set line spacing.
Read more >Promise.race() - JavaScript - MDN Web Docs
The Promise.race() method takes an iterable of promises as input and returns a single Promise. This returned promise settles with the ...
Read more >Unhandled Promise rejection: Can't resolve all parameters for ...
Unhandled Promise rejection: Can't resolve all parameters for InsiderSt... ... bhandaribhumin opened this issue on Dec 10, 2020 · 2 comments.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So, we could do what the French do 😃
Already fixed via https://github.com/mdn/yari/pull/3530.