Skip to content

Commit

Permalink
Merge pull request #4138 from murongshaozong/master
Browse files Browse the repository at this point in the history
chore: remove repetitive words
  • Loading branch information
oleibman authored Aug 13, 2024
2 parents f7c183b + ef34a86 commit bc0460d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/topics/conditional-formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ The Wizards know which operator types match up with condition types, and provide

---

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.
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.

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.

Expand Down
2 changes: 1 addition & 1 deletion docs/topics/defined-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Even though `CHARGE_RATE` references a cell on a different worksheet, because is

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.

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.
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.

```php
$clients = [
Expand Down
2 changes: 1 addition & 1 deletion src/PhpSpreadsheet/Calculation/Web/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static function webService(string $url): string
return ExcelError::VALUE(); // Invalid protocol
}

// Get results from the the webservice
// Get results from the webservice
$client = Settings::getHttpClient();
$requestFactory = Settings::getRequestFactory();
$request = $requestFactory->createRequest('GET', $url);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private function validationAssertions(): array
'Float between 2 and 5: 7' => [false, 'G1', 7],
'Integer not between -5 and 5: 3' => [false, 'F2', 3],
'Integer not between -5 and 5: -1' => [false, 'F2', -1],
'Integer not not between -5 and 5: 7' => [true, 'F2', 7],
'Integer not between -5 and 5: 7' => [true, 'F2', 7],
'Any integer except 7: -1' => [true, 'F3', -1],
'Any integer except 7: 7' => [false, 'F3', 7],
'Only -3: -1' => [false, 'F4', -1],
Expand Down

0 comments on commit bc0460d

Please sign in to comment.