From a8ba2df8e62eac9fabb13d8e5d3b96d07ed8d6a9 Mon Sep 17 00:00:00 2001 From: Carlos Ferreira Date: Fri, 20 Nov 2020 20:01:28 +0100 Subject: [PATCH] Simple typo in comments --- lib/private/Http/Client/Client.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/Http/Client/Client.php b/lib/private/Http/Client/Client.php index 35171810a6..af4ebc5272 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'; @@ -165,7 +165,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); }