Skip to content

Commit 3ec6dc4

Browse files
authored
chore: fix spelling in several places (quasarframework#7465)
* chore: ignore .vscode * fix: spelling
1 parent a075351 commit 3ec6dc4

File tree

17 files changed

+22
-20
lines changed

17 files changed

+22
-20
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55
yarn.lock
66
debug.log
77
package-lock.json
8+
9+
ui/.vscode/

app/types/shims.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Mocks electron module avoiding TS errors when the dependency has not been installed.
2-
// When it's installed, this is overriden by correct typings which are then applied to QVueGlobals
2+
// When it's installed, this is overridden by correct typings which are then applied to QVueGlobals
33
// This is needed because electron typings are into the main package and would force
44
// us to require the full package even when electron is not used
55
declare module "electron" {}
66

77
// Mocks electron-builder module avoiding TS errors when the dependency has not been installed.
8-
// When it's installed, this is overriden by correct typings which are then applied to ElectronBuilderConfiguration
8+
// When it's installed, this is overridden by correct typings which are then applied to ElectronBuilderConfiguration
99
// This is needed because electron-builder typings are into the main package and would force
1010
// us to require the full package even when electron-builder is not used
1111
declare module "electron-builder" {

docs/src/components/page-parts/releases/sanitize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ HtmlWhitelistedSanitizer.prototype.sanitizeString = function (input) {
100100
}
101101

102102
HtmlWhitelistedSanitizer.prototype.sanitizeNode = function (node) {
103-
// Note: <form> can have its nodeName overriden by a child node. It's
103+
// Note: <form> can have its nodeName overridden by a child node. It's
104104
// not a big deal here, so we can punt on this.
105105
const nodeName = node.nodeName.toLowerCase()
106106
if (nodeName === '#text') {

docs/src/css/docsearch.sass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inital part taken from
1+
// initial part taken from
22
// https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css
33
44
.searchbox

docs/src/examples/QChatMessage/Sanitize.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
avatar="https://cdn.quasar.dev/img/avatar5.jpg"
1515
:text="[
1616
'doing fine, how r you?',
17-
'I just feel like typing a really, really, <strong>REALY</strong> long message to annoy you...'
17+
'I just feel like typing a really, really, <strong>REALLY</strong> long message to annoy you...'
1818
]"
1919
text-sanitize
2020
size="6"

docs/src/examples/QChatMessage/Size.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
avatar="https://cdn.quasar.dev/img/avatar5.jpg"
1515
:text="[
1616
'doing fine, how r you?',
17-
'I just feel like typing a really, really, REALY long message to annoy you...'
17+
'I just feel like typing a really, really, REALLY long message to annoy you...'
1818
]"
1919
size="6"
2020
stamp="4 minutes ago"

docs/src/pages/icongenie/command-list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ $ icongenie generate -h
114114
10px to bottom, 5px to left side and 5px to rightside
115115
116116
--theme-color Theme color to use for all generators requiring a color;
117-
It gets overriden if any generator color is also specified;
117+
It gets overridden if any generator color is also specified;
118118
The color must be in hex format (NOT hexa) without the leading
119119
'#' character. Transparency not allowed.
120120
Examples: 1976D2, eee
@@ -302,7 +302,7 @@ $ icongenie profile -h
302302
303303
--theme-color Prefill the params.themeColor property;
304304
Theme color to use for all generators requiring a color;
305-
It gets overriden if any generator color is also specified;
305+
It gets overridden if any generator color is also specified;
306306
The color must be in hex format (NOT hexa) without the leading
307307
'#' character. Transparency not allowed.
308308
Examples: 1976D2, eee

docs/src/pages/icongenie/profile-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Full list of props that you can write for the `params` object:
3636
| padding | Array [Number] | (v2.1+) Apply fixed padding to the icon image after trimming it; Syntax: [ <horiz_px>, <vert_px> ]; Default is: [0, 0] | `[10, 0]` / `[5,5]` |
3737
| skipTrim | Boolean | (v2.2+) Do not trim the icon source file | |
3838
| themeColor | String [hex] | Rather than using the other color related props, you can use this one; it will be used by each generator (that uses a color) | `ccc` / `e2b399` |
39-
| themeColor | String [hex] | Theme color to use for all generators requiring a color; it gets overriden if any generator color is also specified | `ccc` / `e2b399` |
39+
| themeColor | String [hex] | Theme color to use for all generators requiring a color; it gets overridden if any generator color is also specified | `ccc` / `e2b399` |
4040
| pngColor | String [hex] | Background color to use for the png generator, when "background: true" in the asset definition (like for the cordova/capacitor iOS icons) | `ccc` / `e2b399` |
4141
| splashscreenColor | String [hex] | Background color to use for the splashscreen generator | `ccc` / `e2b399` |
4242
| svgColor | String [hex] | Color to use for the generated monochrome SVGs | `ccc` / `e2b399` |

docs/src/pages/quasar-cli/developing-browser-extensions/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: What is a Browser Extension
33
desc: Introduction on what a Browser Extension (BEX) is.
44
---
55

6-
A Browser Extension (BEX) is an application that runs in the browsers context and is used to customise the web browser in some way.
6+
A Browser Extension (BEX) is an application that runs in the browsers context and is used to customize the web browser in some way.
77

88
They are built on web technologies such as HTML, JavaScript, and CSS and will aim to fulfill a single purpose. A single BEX
99
can be built in any way the user deems fit but must contribute towards fulfilling that single purpose.

docs/src/pages/quasar-cli/supporting-ts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ module.exports = function (ctx) {
5656
return {
5757
supportTS: {
5858
tsLoaderConfig: {
59-
// `appendTsSuffixTo: [/\.vue$/]` and `transpileOnly: true` are added by default and cannot be overriden
59+
// `appendTsSuffixTo: [/\.vue$/]` and `transpileOnly: true` are added by default and cannot be overridden
6060
...
6161
},
6262
tsCheckerConfig: {
63-
// `vue: true` is added by default and cannot be overriden
63+
// `vue: true` is added by default and cannot be overridden
6464
...
6565
}
6666
},

0 commit comments

Comments
 (0)