Skip to content

Commit 00beab4

Browse files
authored
chore(docs): remove redundant word in comment (#30415)
Issue number: N/A --------- remove redundant word in comment Signed-off-by: pengqiseven <[email protected]>
1 parent c3ad15b commit 00beab4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

core/src/components.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2612,7 +2612,7 @@ export namespace Components {
26122612
*/
26132613
"cancelButtonIcon": string;
26142614
/**
2615-
* Set the the cancel button text. Only applies to `ios` mode.
2615+
* Set the cancel button text. Only applies to `ios` mode.
26162616
*/
26172617
"cancelButtonText": string;
26182618
/**
@@ -7443,7 +7443,7 @@ declare namespace LocalJSX {
74437443
*/
74447444
"cancelButtonIcon"?: string;
74457445
/**
7446-
* Set the the cancel button text. Only applies to `ios` mode.
7446+
* Set the cancel button text. Only applies to `ios` mode.
74477447
*/
74487448
"cancelButtonText"?: string;
74497449
/**

core/src/components/picker-legacy-column/picker-column.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ export class PickerColumnCmp implements ComponentInterface {
386386
const colEl = this.optsEl;
387387
if (colEl) {
388388
// DOM READ
389-
// We perfom a DOM read over a rendered item, this needs to happen after the first render or after the the column has changed
389+
// We perfom a DOM read over a rendered item, this needs to happen after the first render or after the column has changed
390390
this.optHeight = colEl.firstElementChild ? colEl.firstElementChild.clientHeight : 0;
391391
}
392392
this.refresh(forceRefresh, animated);

core/src/components/searchbar/searchbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class Searchbar implements ComponentInterface {
101101
@Prop() cancelButtonIcon = config.get('backButtonIcon', arrowBackSharp) as string;
102102

103103
/**
104-
* Set the the cancel button text. Only applies to `ios` mode.
104+
* Set the cancel button text. Only applies to `ios` mode.
105105
*/
106106
@Prop() cancelButtonText = 'Cancel';
107107

docs/core/testing/usage-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Instead, use the [Update Reference Screenshots GitHub Action](https://github.com
273273
3. Leave the input field blank.
274274
4. Click **Run workflow**.
275275

276-
This workflow will re-run all of the the screenshot tests. Instead of failing any tests with mismatched screenshots, it will take new ground truth screenshots. These ground truth screenshots will be pushed as a single commit to your branch once the workflow is completed.
276+
This workflow will re-run all of the screenshot tests. Instead of failing any tests with mismatched screenshots, it will take new ground truth screenshots. These ground truth screenshots will be pushed as a single commit to your branch once the workflow is completed.
277277

278278
If you want to update ground truths for a specific test, you can pass the test file path as an input to the workflow. This is useful when working on a specific component.
279279

packages/react/src/components/IonRouterContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export type UseIonRouterResult = {
7979
*/
8080
goBack(animationBuilder?: AnimationBuilder): void;
8181
/**
82-
* Determines if there are any additional routes in the the Router's history. However, routing is not prevented if the browser's history has more entries. Returns true if more entries exist, false if not.
82+
* Determines if there are any additional routes in the Router's history. However, routing is not prevented if the browser's history has more entries. Returns true if more entries exist, false if not.
8383
*/
8484
canGoBack(): boolean;
8585
routeInfo: RouteInfo;

0 commit comments

Comments
 (0)