1
0
mirror of https://github.com/ovh/php-ovh.git synced 2023-11-05 03:20:26 +01:00

Replace *retreived* with *retrieved* in README.md

Signed-off-by: Benjamin Loison <benjamin_loison@users.noreply.gitea.lemnoslife.com>
This commit is contained in:
Benjamin Loison 2023-05-26 16:37:10 +02:00
parent 9a29f720d0
commit 50e52c5bf5
No known key found for this signature in database

View File

@ -26,7 +26,7 @@ Install this wrapper and integrate it inside your PHP application with [Composer
require __DIR__ . '/vendor/autoload.php';
use \Ovh\Api;
// Api credentials can be retreived from the urls specified in the "Supported endpoints" section below.
// Api credentials can be retrieved from the urls specified in the "Supported endpoints" section below.
$ovh = new Api($applicationKey,
$applicationSecret,
$endpoint,
@ -71,7 +71,7 @@ $client = new Client();
$client->setDefaultOption('timeout', 1);
$client->setDefaultOption('headers', ['User-Agent' => 'api_client']);
// Api credentials can be retreived from the urls specified in the "Supported endpoints" section below.
// Api credentials can be retrieved from the urls specified in the "Supported endpoints" section below.
// Inject the custom HTTP client as the 5th argument of the constructor
$ovh = new Api($applicationKey,
$applicationSecret,
@ -94,7 +94,7 @@ See "OVHcloud API authentication" section below for more information about the a
use \Ovh\Api;
session_start();
// Api credentials can be retreived from the urls specified in the "Supported endpoints" section below.
// Api credentials can be retrieved from the urls specified in the "Supported endpoints" section below.
$ovh = new Api($applicationKey,
$applicationSecret,
$endpoint);
@ -124,7 +124,7 @@ Here is a more complex example of how to use the wrapper to enable network burst
require __DIR__ . '/vendor/autoload.php';
use \Ovh\Api;
// Api credentials can be retreived from the urls specified in the "Supported endpoints" section below.
// Api credentials can be retrieved from the urls specified in the "Supported endpoints" section below.
$ovh = new Api($applicationKey,
$applicationSecret,
$endpoint,