Skip to content

Commit 6ea1ae9

Browse files
chore: fix typo in descriptions
1 parent 05f9567 commit 6ea1ae9

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

lib/finch_api/resources/hris/benefits.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def retrieve(benefit_id, params = {})
7171
#
7272
# @overload update(benefit_id, entity_ids: nil, description: nil, request_options: {})
7373
#
74-
# @param benefit_id [String] Path param:
74+
# @param benefit_id [String] Path param
7575
#
7676
# @param entity_ids [Array<String>] Query param: The entity IDs to specify which entities' data to access.
7777
#

lib/finch_api/resources/hris/benefits/individuals.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Individuals
1212
#
1313
# @overload enroll_many(benefit_id, entity_ids: nil, individuals: nil, request_options: {})
1414
#
15-
# @param benefit_id [String] Path param:
15+
# @param benefit_id [String] Path param
1616
#
1717
# @param entity_ids [Array<String>] Query param: The entity IDs to specify which entities' data to access.
1818
#
@@ -94,7 +94,7 @@ def retrieve_many_benefits(benefit_id, params = {})
9494
#
9595
# @overload unenroll_many(benefit_id, entity_ids: nil, individual_ids: nil, request_options: {})
9696
#
97-
# @param benefit_id [String] Path param:
97+
# @param benefit_id [String] Path param
9898
#
9999
# @param entity_ids [Array<String>] Query param: The entity IDs to specify which entities' data to access.
100100
#

lib/finch_api/resources/hris/company/pay_statement_item/rules.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Rules
2121
#
2222
# @param attributes [FinchAPI::Models::HRIS::Company::PayStatementItem::RuleCreateParams::Attributes] Body param: Specifies the fields to be applied when the condition is met.
2323
#
24-
# @param conditions [Array<FinchAPI::Models::HRIS::Company::PayStatementItem::RuleCreateParams::Condition>] Body param:
24+
# @param conditions [Array<FinchAPI::Models::HRIS::Company::PayStatementItem::RuleCreateParams::Condition>] Body param
2525
#
2626
# @param effective_end_date [String, nil] Body param: Specifies when the rules should stop applying rules based on the dat
2727
#
@@ -51,11 +51,11 @@ def create(params = {})
5151
#
5252
# @overload update(rule_id, entity_ids: nil, optional_property: nil, request_options: {})
5353
#
54-
# @param rule_id [String] Path param:
54+
# @param rule_id [String] Path param
5555
#
5656
# @param entity_ids [Array<String>] Query param: The entity IDs to update the rule for.
5757
#
58-
# @param optional_property [Object] Body param:
58+
# @param optional_property [Object] Body param
5959
#
6060
# @param request_options [FinchAPI::RequestOptions, Hash{Symbol=>Object}, nil]
6161
#

lib/finch_api/resources/hris/individuals.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ class Individuals
1010
#
1111
# @param entity_ids [Array<String>] Query param: The entity IDs to specify which entities' data to access.
1212
#
13-
# @param options [FinchAPI::Models::HRIS::IndividualRetrieveManyParams::Options, nil] Body param:
13+
# @param options [FinchAPI::Models::HRIS::IndividualRetrieveManyParams::Options, nil] Body param
1414
#
15-
# @param requests [Array<FinchAPI::Models::HRIS::IndividualRetrieveManyParams::Request>] Body param:
15+
# @param requests [Array<FinchAPI::Models::HRIS::IndividualRetrieveManyParams::Request>] Body param
1616
#
1717
# @param request_options [FinchAPI::RequestOptions, Hash{Symbol=>Object}, nil]
1818
#

rbi/finch_api/resources/hris/benefits.rbi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module FinchAPI
6565
).returns(FinchAPI::HRIS::UpdateCompanyBenefitResponse)
6666
end
6767
def update(
68-
# Path param:
68+
# Path param
6969
benefit_id,
7070
# Query param: The entity IDs to specify which entities' data to access.
7171
entity_ids: nil,

rbi/finch_api/resources/hris/benefits/individuals.rbi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module FinchAPI
2323
)
2424
end
2525
def enroll_many(
26-
# Path param:
26+
# Path param
2727
benefit_id,
2828
# Query param: The entity IDs to specify which entities' data to access.
2929
entity_ids: nil,
@@ -87,7 +87,7 @@ module FinchAPI
8787
)
8888
end
8989
def unenroll_many(
90-
# Path param:
90+
# Path param
9191
benefit_id,
9292
# Query param: The entity IDs to specify which entities' data to access.
9393
entity_ids: nil,

rbi/finch_api/resources/hris/company/pay_statement_item/rules.rbi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module FinchAPI
3333
entity_ids: nil,
3434
# Body param: Specifies the fields to be applied when the condition is met.
3535
attributes: nil,
36-
# Body param:
36+
# Body param
3737
conditions: nil,
3838
# Body param: Specifies when the rules should stop applying rules based on the
3939
# date.
@@ -58,11 +58,11 @@ module FinchAPI
5858
)
5959
end
6060
def update(
61-
# Path param:
61+
# Path param
6262
rule_id,
6363
# Query param: The entity IDs to update the rule for.
6464
entity_ids: nil,
65-
# Body param:
65+
# Body param
6666
optional_property: nil,
6767
request_options: {}
6868
)

rbi/finch_api/resources/hris/individuals.rbi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ module FinchAPI
2626
def retrieve_many(
2727
# Query param: The entity IDs to specify which entities' data to access.
2828
entity_ids: nil,
29-
# Body param:
29+
# Body param
3030
options: nil,
31-
# Body param:
31+
# Body param
3232
requests: nil,
3333
request_options: {}
3434
)

0 commit comments

Comments
 (0)