Skip to content

Commit

Permalink
docs: Cleanup typos and broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Oct 23, 2024
1 parent c30adb4 commit bb5ea34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/i18n/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
}
Expand Down Expand Up @@ -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);
// ...
Expand Down
2 changes: 1 addition & 1 deletion packages/wxt/src/client/content-scripts/ui/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit bb5ea34

Please sign in to comment.