Skip to content

Commit 7d2968a

Browse files
authored
Merge pull request #24260 from nextcloud/backport/24257/stable19
[stable19] Simple typo in comments
2 parents b5d99fd + 8f9facc commit 7d2968a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/private/Http/Client/Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private function getCertBundle(): string {
9898
}
9999

100100
// If the instance is not yet setup we need to use the static path as
101-
// $this->certificateManager->getAbsoluteBundlePath() tries to instantiiate
101+
// $this->certificateManager->getAbsoluteBundlePath() tries to instantiate
102102
// a view
103103
if ($this->config->getSystemValue('installed', false)) {
104104
return $this->certificateManager->getAbsoluteBundlePath(null);
@@ -160,7 +160,7 @@ protected function preventLocalAddress(string $uri, array $options): void {
160160
}
161161

162162
$host = strtolower($host);
163-
// remove brackets from IPv6 addresses
163+
// Remove brackets from IPv6 addresses
164164
if (strpos($host, '[') === 0 && substr($host, -1) === ']') {
165165
$host = substr($host, 1, -1);
166166
}

0 commit comments

Comments
 (0)