aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-11-20 20:42:40 +0100
committerGitHub <noreply@github.com>2020-11-20 20:42:40 +0100
commitc31e4266c71fa34707455fc41b728a50db2c606e (patch)
tree60e778798c2a63381da75bbc297cca7b4de49981
parent1448b7c923d079c9616f87df3ffa52a4656ac6cc (diff)
parenta42eb05a35a47934b7a3678144c4a8fb2f2ff150 (diff)
downloadnextcloud-server-c31e4266c71fa34707455fc41b728a50db2c606e.tar.gz
nextcloud-server-c31e4266c71fa34707455fc41b728a50db2c606e.zip
Merge pull request #24257 from nextcloud/nc-comments
Simple typo in comments
-rw-r--r--lib/private/Http/Client/Client.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Http/Client/Client.php b/lib/private/Http/Client/Client.php
index 5ac29afe31d..96593ac3999 100644
--- a/lib/private/Http/Client/Client.php
+++ b/lib/private/Http/Client/Client.php
@@ -99,7 +99,7 @@ class Client implements IClient {
private function getCertBundle(): string {
// If the instance is not yet setup we need to use the static path as
- // $this->certificateManager->getAbsoluteBundlePath() tries to instantiiate
+ // $this->certificateManager->getAbsoluteBundlePath() tries to instantiate
// a view
if ($this->config->getSystemValue('installed', false) === false) {
return \OC::$SERVERROOT . '/resources/config/ca-bundle.crt';
@@ -161,7 +161,7 @@ class Client implements IClient {
}
$host = strtolower($host);
- // remove brackets from IPv6 addresses
+ // Remove brackets from IPv6 addresses
if (strpos($host, '[') === 0 && substr($host, -1) === ']') {
$host = substr($host, 1, -1);
}