Skip to content

Commit bc0460d

Browse files
authored
Merge pull request #4138 from murongshaozong/master
chore: remove repetitive words
2 parents f7c183b + ef34a86 commit bc0460d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/topics/conditional-formatting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The Wizards know which operator types match up with condition types, and provide
7171

7272
---
7373

74-
Note that `$conditionalStyles` is an array: it is possible to apply several conditions to the same range of cells. If we also wanted to highlight values that were less than 10 in the the A1:A10 range, we can add a second style rule.
74+
Note that `$conditionalStyles` is an array: it is possible to apply several conditions to the same range of cells. If we also wanted to highlight values that were less than 10 in the A1:A10 range, we can add a second style rule.
7575

7676
In Excel, we would do this by selecting the range again, and going through the same process, this time selecting the "Highlight Cells Rules", then "Less Than" from the "Conditional Styles" menu, entering the value "10" in the prompt box, and selecting the appropriate style.
7777

docs/topics/defined-names.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Even though `CHARGE_RATE` references a cell on a different worksheet, because is
263263

264264
However, a Named Range can be locally scoped so that it is only available when referenced from a specific worksheet, or it can be globally scoped. This means that you can use the same Named Range name with different values on different worksheets.
265265

266-
Building further on our timesheet, perhaps we use a different worksheet for each client, and we use the same hourly rate when billing most of our clients; but for one particular client (perhaps doing work for a a friend) we use a lower rate.
266+
Building further on our timesheet, perhaps we use a different worksheet for each client, and we use the same hourly rate when billing most of our clients; but for one particular client (perhaps doing work for a friend) we use a lower rate.
267267

268268
```php
269269
$clients = [

src/PhpSpreadsheet/Calculation/Web/Service.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static function webService(string $url): string
2929
return ExcelError::VALUE(); // Invalid protocol
3030
}
3131

32-
// Get results from the the webservice
32+
// Get results from the webservice
3333
$client = Settings::getHttpClient();
3434
$requestFactory = Settings::getRequestFactory();
3535
$request = $requestFactory->createRequest('GET', $url);

tests/PhpSpreadsheetTests/Reader/Xml/DataValidationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private function validationAssertions(): array
9292
'Float between 2 and 5: 7' => [false, 'G1', 7],
9393
'Integer not between -5 and 5: 3' => [false, 'F2', 3],
9494
'Integer not between -5 and 5: -1' => [false, 'F2', -1],
95-
'Integer not not between -5 and 5: 7' => [true, 'F2', 7],
95+
'Integer not between -5 and 5: 7' => [true, 'F2', 7],
9696
'Any integer except 7: -1' => [true, 'F3', -1],
9797
'Any integer except 7: 7' => [false, 'F3', 7],
9898
'Only -3: -1' => [false, 'F4', -1],

0 commit comments

Comments
 (0)