Skip to content

Commit cf02cf1

Browse files
AlexElinAndrewKushnir
authored andcommitted
docs: remove duplicated the (angular#40434)
PR Close angular#40434
1 parent b971bc6 commit cf02cf1

File tree

20 files changed

+23
-23
lines changed

20 files changed

+23
-23
lines changed

.circleci/env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ echo "export CI_SECRET_PAYLOAD_FIREBASE_TOKEN=\"${CI_SECRET_PAYLOAD_FIREBASE_TOK
107107
####################################################################################################
108108
####################################################################################################
109109
## Source `$BASH_ENV` to make the variables available immediately. ##
110-
## ***NOTE: This must remain the the last action in this script*** ##
110+
## ***NOTE: This must remain the last action in this script*** ##
111111
####################################################################################################
112112
####################################################################################################
113113
source $BASH_ENV;

dev-infra/build-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ function validateCommonConfig(config) {
205205
*/
206206
function readConfigFile(configPath, returnEmptyObjectOnError) {
207207
if (returnEmptyObjectOnError === void 0) { returnEmptyObjectOnError = false; }
208-
// If the the `.ts` extension has not been set up already, and a TypeScript based
208+
// If the `.ts` extension has not been set up already, and a TypeScript based
209209
// version of the given configuration seems to exist, set up `ts-node` if available.
210210
if (require.extensions['.ts'] === undefined && fs.existsSync(configPath + ".ts") &&
211211
isTsNodeAvailable()) {

dev-infra/ng-dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function validateCommonConfig(config) {
121121
*/
122122
function readConfigFile(configPath, returnEmptyObjectOnError) {
123123
if (returnEmptyObjectOnError === void 0) { returnEmptyObjectOnError = false; }
124-
// If the the `.ts` extension has not been set up already, and a TypeScript based
124+
// If the `.ts` extension has not been set up already, and a TypeScript based
125125
// version of the given configuration seems to exist, set up `ts-node` if available.
126126
if (require.extensions['.ts'] === undefined && fs.existsSync(configPath + ".ts") &&
127127
isTsNodeAvailable()) {

dev-infra/utils/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function validateCommonConfig(config: Partial<NgDevConfig>) {
100100
* configuration file cannot be read.
101101
*/
102102
function readConfigFile(configPath: string, returnEmptyObjectOnError = false): object {
103-
// If the the `.ts` extension has not been set up already, and a TypeScript based
103+
// If the `.ts` extension has not been set up already, and a TypeScript based
104104
// version of the given configuration seems to exist, set up `ts-node` if available.
105105
if (require.extensions['.ts'] === undefined && existsSync(`${configPath}.ts`) &&
106106
isTsNodeAvailable()) {

integration/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ load(":angular_integration_test.bzl", "angular_integration_test")
44
# cases the tests are able to select a random free port.
55
#
66
# Where `ng e2e` is used we pass `ng e2e --port 0` which prompts the cli
7-
# to select a random free port for the the e2e test. The protractor.conf is
7+
# to select a random free port for the e2e test. The protractor.conf is
88
# automatically updated to use this port.
99
#
1010
# Karma automatically finds a free port so no effort is needed there.
@@ -61,7 +61,7 @@ INTEGRATION_TESTS = {
6161
},
6262
"hello_world__systemjs_umd": {
6363
# Special case for `hello_world__systemjs_umd` test as we want to pin
64-
# `systems` at version 0.20.2 and not link to the the root @npm//systemjs
64+
# `systems` at version 0.20.2 and not link to the root @npm//systemjs
6565
# which is stuck at 0.18.10 and can't be updated to 0.20.2 without
6666
# breaking the legacy saucelabs job.
6767
"pinned_npm_packages": ["systemjs"],

packages/bazel/src/ng_package/ng_package.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def _filter_out_generated_files(files, extension, package_path = None):
331331
files_list = files.to_list() if type(files) == _DEPSET_TYPE else files
332332
for file in files_list:
333333
# If the "package_path" parameter has been specified, filter out files
334-
# that do not start with the the specified package path.
334+
# that do not start with the specified package path.
335335
if package_path and not file.short_path.startswith(package_path):
336336
continue
337337

packages/common/http/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1773,7 +1773,7 @@ export class HttpClient {
17731773

17741774
/**
17751775
* Constructs a `PATCH` request that interprets the body as an `ArrayBuffer` and
1776-
* returns the the full event stream.
1776+
* returns the full event stream.
17771777
*
17781778
* @param url The endpoint URL.
17791779
* @param body The resources to edit.

packages/common/src/directives/ng_if.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ import {Directive, EmbeddedViewRef, Input, TemplateRef, ViewContainerRef, ɵstri
9090
* You might want to show a set of properties from the same object. If you are waiting
9191
* for asynchronous data, the object can be undefined.
9292
* In this case, you can use `ngIf` and store the result of the condition in a local
93-
* variable as shown in the the following example.
93+
* variable as shown in the following example.
9494
*
9595
* {@example common/ngIf/ts/module.ts region='NgIfAs'}
9696
*

packages/compiler-cli/ngcc/src/host/umd_host.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class UmdReflectionHost extends Esm5ReflectionHost {
4646
}
4747

4848
getDeclarationOfIdentifier(id: ts.Identifier): Declaration|null {
49-
// First we try one of the the following:
49+
// First we try one of the following:
5050
// 1. The `exports` identifier - referring to the current file/module.
5151
// 2. An identifier (e.g. `foo`) that refers to an imported UMD module.
5252
// 3. A UMD style export identifier (e.g. the `foo` of `exports.foo`).

packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class EsmRenderingFormatter implements RenderingFormatter {
173173
}
174174

175175
/**
176-
* Rewrite the the IVY switch markers to indicate we are in IVY mode.
176+
* Rewrite the IVY switch markers to indicate we are in IVY mode.
177177
*/
178178
rewriteSwitchableDeclarations(
179179
outputText: MagicString, sourceFile: ts.SourceFile,

0 commit comments

Comments
 (0)