Skip to content

Commit 235dfbc

Browse files
chore(internal): change some comment formatting
1 parent 40267fd commit 235dfbc

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

finch-java-core/src/main/kotlin/com/tryfinch/api/models/JobAutomatedCreateParams.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import kotlin.jvm.optionals.getOrNull
4242
* `w4_form_employee_sync`: Enqueues a job for sync W-4 data for a particular individual, identified
4343
* by `individual_id`. This feature is currently in beta.
4444
*
45-
* This endpoint is available for _Scale_ tier customers as an add-on. To request access to this
45+
* This endpoint is available for *Scale* tier customers as an add-on. To request access to this
4646
* endpoint, please contact your Finch account manager.
4747
*/
4848
class JobAutomatedCreateParams

finch-java-core/src/main/kotlin/com/tryfinch/api/services/async/connect/SessionServiceAsync.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface SessionServiceAsync {
3030
fun new_(params: ConnectSessionNewParams): CompletableFuture<SessionNewResponse> =
3131
new_(params, RequestOptions.none())
3232

33-
/** @see new\_ */
33+
/** @see new_ */
3434
fun new_(
3535
params: ConnectSessionNewParams,
3636
requestOptions: RequestOptions = RequestOptions.none(),
@@ -71,7 +71,7 @@ interface SessionServiceAsync {
7171
): CompletableFuture<HttpResponseFor<SessionNewResponse>> =
7272
new_(params, RequestOptions.none())
7373

74-
/** @see new\_ */
74+
/** @see new_ */
7575
fun new_(
7676
params: ConnectSessionNewParams,
7777
requestOptions: RequestOptions = RequestOptions.none(),

finch-java-core/src/main/kotlin/com/tryfinch/api/services/async/jobs/AutomatedServiceAsync.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface AutomatedServiceAsync {
4040
* `w4_form_employee_sync`: Enqueues a job for sync W-4 data for a particular individual,
4141
* identified by `individual_id`. This feature is currently in beta.
4242
*
43-
* This endpoint is available for _Scale_ tier customers as an add-on. To request access to this
43+
* This endpoint is available for *Scale* tier customers as an add-on. To request access to this
4444
* endpoint, please contact your Finch account manager.
4545
*/
4646
fun create(): CompletableFuture<AutomatedCreateResponse> =

finch-java-core/src/main/kotlin/com/tryfinch/api/services/blocking/connect/SessionService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface SessionService {
3030
fun new_(params: ConnectSessionNewParams): SessionNewResponse =
3131
new_(params, RequestOptions.none())
3232

33-
/** @see new\_ */
33+
/** @see new_ */
3434
fun new_(
3535
params: ConnectSessionNewParams,
3636
requestOptions: RequestOptions = RequestOptions.none(),
@@ -64,7 +64,7 @@ interface SessionService {
6464
fun new_(params: ConnectSessionNewParams): HttpResponseFor<SessionNewResponse> =
6565
new_(params, RequestOptions.none())
6666

67-
/** @see new\_ */
67+
/** @see new_ */
6868
@MustBeClosed
6969
fun new_(
7070
params: ConnectSessionNewParams,

finch-java-core/src/main/kotlin/com/tryfinch/api/services/blocking/jobs/AutomatedService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface AutomatedService {
4040
* `w4_form_employee_sync`: Enqueues a job for sync W-4 data for a particular individual,
4141
* identified by `individual_id`. This feature is currently in beta.
4242
*
43-
* This endpoint is available for _Scale_ tier customers as an add-on. To request access to this
43+
* This endpoint is available for *Scale* tier customers as an add-on. To request access to this
4444
* endpoint, please contact your Finch account manager.
4545
*/
4646
fun create(): AutomatedCreateResponse = create(JobAutomatedCreateParams.none())

0 commit comments

Comments
 (0)