Skip to content

Commit 32795c6

Browse files
docs: fix missing readme comment
1 parent f1f21d9 commit 32795c6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import com.tryfinch.api.models.HrisDirectoryListParams;
5555

5656
FinchClient client = FinchOkHttpClient.builder()
5757
// Configures using the `finch.clientId`, `finch.clientSecret`, `finch.webhookSecret` and `finch.baseUrl` system properties
58-
Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
58+
// Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
5959
.fromEnv()
6060
.accessToken("My Access Token")
6161
.build();
@@ -73,7 +73,7 @@ import com.tryfinch.api.client.okhttp.FinchOkHttpClient;
7373

7474
FinchClient client = FinchOkHttpClient.builder()
7575
// Configures using the `finch.clientId`, `finch.clientSecret`, `finch.webhookSecret` and `finch.baseUrl` system properties
76-
Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
76+
// Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
7777
.fromEnv()
7878
.accessToken("My Access Token")
7979
.build();
@@ -98,7 +98,7 @@ import com.tryfinch.api.client.okhttp.FinchOkHttpClient;
9898

9999
FinchClient client = FinchOkHttpClient.builder()
100100
// Configures using the `finch.clientId`, `finch.clientSecret`, `finch.webhookSecret` and `finch.baseUrl` system properties
101-
Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
101+
// Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
102102
.fromEnv()
103103
.accessToken("My Access Token")
104104
.build();
@@ -161,7 +161,7 @@ import java.util.concurrent.CompletableFuture;
161161

162162
FinchClient client = FinchOkHttpClient.builder()
163163
// Configures using the `finch.clientId`, `finch.clientSecret`, `finch.webhookSecret` and `finch.baseUrl` system properties
164-
Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
164+
// Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
165165
.fromEnv()
166166
.accessToken("My Access Token")
167167
.build();
@@ -180,7 +180,7 @@ import java.util.concurrent.CompletableFuture;
180180

181181
FinchClientAsync client = FinchOkHttpClientAsync.builder()
182182
// Configures using the `finch.clientId`, `finch.clientSecret`, `finch.webhookSecret` and `finch.baseUrl` system properties
183-
Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
183+
// Or configures using the `FINCH_CLIENT_ID`, `FINCH_CLIENT_SECRET`, `FINCH_WEBHOOK_SECRET` and `FINCH_BASE_URL` environment variables
184184
.fromEnv()
185185
.accessToken("My Access Token")
186186
.build();

0 commit comments

Comments
 (0)