docs: Cleanup typos and broken links

This commit is contained in:
Aaron
2024-10-23 08:47:16 -05:00
parent c30adb409c
commit bb5ea34396
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -240,11 +240,11 @@ A key is treated as "verbose" when it is:
{
"appName": {
"message": "GitHub - Better Line Counts",
"description": "The app's name, should not be translated",
"description": "The app's name, should not be translated"
},
"ok": "OK",
"deleteConfirmation": {
"title": "Delete XYZ?"
"title": "Delete XYZ?",
"message": "You cannot undo this action once taken."
}
}
@@ -304,7 +304,7 @@ const messages = {
// ...
};
// Generate JSON files for the browser
// Generate JSON files for the extension
await generateChromeMessagesFile('dist/_locales/en/messages.json', messages.en);
await generateChromeMessagesFile('dist/_locales/de/messages.json', messages.de);
// ...
@@ -96,7 +96,7 @@ export function createIframeUi<TMounted>(
*
* > This function is async because it has to load the CSS via a network call.
*
* @see https://wxt.dev/guide/essentials/content-scripts.html#shadowroot
* @see https://wxt.dev/guide/essentials/content-scripts.html#shadow-root
*/
export async function createShadowRootUi<TMounted>(
ctx: ContentScriptContext,