Skip to content

Commit

Permalink
chore: remove repetitive words (quasarframework#17421)
Browse files Browse the repository at this point in the history
Signed-off-by: pkucode <[email protected]>
  • Loading branch information
pkucode authored Aug 7, 2024
1 parent 4d0bd02 commit 6ea52eb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/quasar-cli-vite/handling-process-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ if (process.env.MODE === 'electron') {

## Adding to process.env

You can add your own definitions to `process.env` through the the `/quasar.config` file.
You can add your own definitions to `process.env` through the `/quasar.config` file.

It's important to understand the different types of environment variables.

Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/field/__tests__/QField.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Field API', () => {
describe('(prop): maxlength', () => {
it.skip(' ', () => {
// It is tricky to test this since it will require that we setup a control slot with v-model.
// This is already tested in QInput and others using use-field composable, so are not not testing it.
// This is already tested in QInput and others using use-field composable, so are not testing it.
})
})
})
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/input/__tests__/QInput.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('Input API', () => {
})

describe('(prop): loading', () => {
it('should should set the component into a loading state', () => {
it('should set the component into a loading state', () => {
mountQInput({
props: {
loading: true
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/select/__tests__/QSelect.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ describe('QSelect API', () => {
})

describe('(event): filter-abort', () => {
it('should emit event when the the filterFn has not called the doneFn yet and a new filter is requested', () => {
it('should emit event when the filterFn has not called the doneFn yet and a new filter is requested', () => {
const fn = cy.stub()
const filterFn = cy.stub()
mountQSelect({
Expand Down
2 changes: 1 addition & 1 deletion ui/src/composables/__tests__/use-field.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe('use-field API', () => {

describe('Category: behavior|content', () => {
describe('(prop): loading', () => {
it('should should set the component into a loading state', () => {
it('should set the component into a loading state', () => {
mountQFieldWrapper({
props: {
loading: true
Expand Down

0 comments on commit 6ea52eb

Please sign in to comment.