Skip to content

Commit 165c053

Browse files
committed
Fix typo: sting -> string
1 parent 96a23c0 commit 165c053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/service-connector/includes/code-postgres-me-id.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ For PHP, there's not a plugin or library for passwordless connections. You can g
301301

302302
For service principal, refer to [the Azure AD service-to-service access token request](/azure/active-directory/develop/v2-oauth2-client-creds-grant-flow#get-a-token) to see the details of how to acquire access token. Make the POST request the scope of `https://ossrdbms-aad.database.windows.net/.default` and with the tenant ID, client ID and client secret of the service principal from the environment variables added by Service Connector.
303303

304-
1. Combine the access token and the PostgreSQL connection sting from environment variables added by Service Connector service to establish the connection.
304+
1. Combine the access token and the PostgreSQL connection string from environment variables added by Service Connector service to establish the connection.
305305
```php
306306
<?php
307307
$conn_string = sprintf("%s password=", getenv('AZURE_POSTGRESQL_CONNECTIONSTRING'), $access_token);

0 commit comments

Comments
 (0)