Skip to content

Commit e2a1ce6

Browse files
committed
Fix
1 parent 07c5696 commit e2a1ce6

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

slack_sdk/models/blocks/block_elements.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def __init__(
376376
Should be unique among all other action_ids in the containing block.
377377
Maximum length for this field is 255 characters.
378378
options (required): An array of option objects. A maximum of 10 options are allowed.
379-
initial_options: An array of option objects that exactly matches one or more of the options within options.
379+
initial_options: An array of option objects that exactly matches one or more of the options.
380380
These options will be selected when the checkbox group initially loads.
381381
confirm: A confirm object that defines an optional confirmation dialog that appears
382382
after clicking one of the checkboxes in this element.
@@ -599,7 +599,7 @@ def __init__(
599599
option_groups (either options or option_groups is required): An array of option group objects.
600600
Maximum number of option groups is 100.
601601
If options is specified, this field should not be.
602-
initial_option: A single option that exactly matches one of the options within options or option_groups.
602+
initial_option: A single option that exactly matches one of the options or option_groups.
603603
This option will be selected when the menu initially loads.
604604
confirm: A confirm object that defines an optional confirmation dialog
605605
that appears after a menu item is selected.
@@ -757,7 +757,7 @@ def __init__(
757757
option_groups (either options or option_groups is required): An array of option group objects.
758758
Maximum number of option groups is 100.
759759
If options is specified, this field should not be.
760-
initial_option: A single option that exactly matches one of the options within options or option_groups.
760+
initial_option: A single option that exactly matches one of the options or option_groups.
761761
This option will be selected when the menu initially loads.
762762
confirm: A confirm object that defines an optional confirmation dialog
763763
that appears after a menu item is selected.
@@ -1383,7 +1383,7 @@ def __init__(
13831383
Should be unique among all other action_ids in the containing block.
13841384
Maximum length for this field is 255 characters.
13851385
options (required): An array of option objects. A maximum of 10 options are allowed.
1386-
initial_option: An option object that exactly matches one of the options within options.
1386+
initial_option: An option object that exactly matches one of the options.
13871387
This option will be selected when the radio button group initially loads.
13881388
confirm: A confirm object that defines an optional confirmation dialog that appears
13891389
after clicking one of the radio buttons in this element.

slack_sdk/models/blocks/blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def __init__(
370370
block_id should be unique for each message or view and each iteration of a message or view.
371371
If a message or view is updated, use a new block_id.
372372
hint: An optional hint that appears below an input element in a lighter grey.
373-
It must be a a text object with a type of plain_text.
373+
It must be a text object with a type of plain_text.
374374
Maximum length for the text in this field is 2000 characters.
375375
dispatch_action: A boolean that indicates whether or not the use of elements in this block
376376
should dispatch a block_actions payload. Defaults to false.

0 commit comments

Comments
 (0)