Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct typos #9858

Merged
merged 2 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/pwa/src/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface ContentStatus {

export class MDNOfflineDB extends Dexie {
// Declare implicit table properties.
// (just to inform Typescript. Instanciated by Dexie in stores() method)
// (just to inform Typescript. Instantiated by Dexie in stores() method)
whoami!: Dexie.Table<Whoami, number>; // number = type of the primkey
contentStatusHistory!: Dexie.Table<ContentStatus, number>;

Expand Down
2 changes: 1 addition & 1 deletion client/src/settings/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface ContentStatus {

export class MDNOfflineDB extends Dexie {
// Declare implicit table properties.
// (just to inform Typescript. Instanciated by Dexie in stores() method)
// (just to inform Typescript. Instantiated by Dexie in stores() method)
thapasusheel marked this conversation as resolved.
Show resolved Hide resolved
whoami!: Dexie.Table<Whoami, number>; // number = type of the primkey
contentStatusHistory!: Dexie.Table<ContentStatus, number>;

Expand Down
2 changes: 1 addition & 1 deletion client/src/ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ is now manually kept in sync. In future we hope to automate this process.

When we embarked on the redesign, the idea was to use
[mdn-minimalist](https://github.com/mdn/mdn-minimalist) as the base and override
what is different. In the end this prooved more cumbersome than we had hoped.
what is different. In the end this proved more cumbersome than we had hoped.
This means that either the `theme` folder will be removed in future or, the
`client/src/ui/minimalist` folder.

Expand Down
2 changes: 1 addition & 1 deletion copy/plus/features/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Collections
>
> Collections allow you to save MDN articles and share your library across
> devices. We also automatically save for you the pages you visit most
> frequently. They wil help you find what you need quicker by showing first in
> frequently. They will help you find what you need quicker by showing first in
> your search results when looking for a relevant topic and you’ll be able to
> curate the lists to your liking.

Expand Down
2 changes: 1 addition & 1 deletion deployer/src/deployer/search/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"yari_word_delimiter",
type="word_delimiter",
# When it splits on 'Array.prototype.forEach' it first of all becomes
# 'array', 'protoype', and 'foreach'. But also, still includes
# 'array', 'prototype', and 'foreach'. But also, still includes
# as a word 'array.prototype.foreach'.
# With this configuration we'll get good matches for both
# 'array foreach' and if people type the full 'array.prototype.foreach'.
Expand Down
2 changes: 1 addition & 1 deletion kumascript/macros/SVGElement.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const term = $0;
//
// you *want* flaws to bubble up. E.g. a typo like `{{SVGElement("imge")}}`
// But this macro is called from another macro, like `SVGRef` then, all those
// macro calls' flaws should be "supressed" because it's a problem with the that
// macro calls' flaws should be "suppressed" because it's a problem with the that
// sidebar macro, not the page the current user is viewing/working on.
// So if this 2nd argument is passed, it will potentially ignore the macro flaw.
const ignoreFlawMacro = $1;
Expand Down
Loading