Skip to content

Commit fb15340

Browse files
Abel Milashclaude
andcommitted
Simplify display_name docstring descriptions
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 48953e7 commit fb15340

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

src/PowerPlatform/Dataverse/data/_odata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,7 @@ def _create_table(
16481648
:type solution_unique_name: ``str`` | ``None``
16491649
:param primary_column_schema_name: Optional primary column schema name.
16501650
:type primary_column_schema_name: ``str`` | ``None``
1651-
:param display_name: Optional display name shown in the Power Platform UI. Defaults to ``table_schema_name``.
1651+
:param display_name: Human-readable display name for the table. Defaults to ``table_schema_name``.
16521652
:type display_name: ``str`` | ``None``
16531653
16541654
:return: Metadata summary for the created table including created column schema names.

src/PowerPlatform/Dataverse/operations/batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def create(
376376
:type solution: str or None
377377
:param primary_column: Optional primary column schema name.
378378
:type primary_column: str or None
379-
:param display_name: Human-readable display name shown in the Power Platform UI.
379+
:param display_name: Human-readable display name for the table.
380380
When omitted, defaults to the table schema name.
381381
:type display_name: str or None
382382
"""

src/PowerPlatform/Dataverse/operations/tables.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,8 @@ def create(
9797
customization prefix (e.g. ``"new_ProductName"``). If not provided,
9898
defaults to ``"{prefix}_Name"``.
9999
:type primary_column: :class:`str` or None
100-
:param display_name: Human-readable display name shown in the Power
101-
Platform UI (e.g. ``"Product"``). When omitted, defaults to the
102-
table schema name.
100+
:param display_name: Human-readable display name for the table
101+
(e.g. ``"Product"``). When omitted, defaults to the table schema name.
103102
:type display_name: :class:`str` or None
104103
105104
:return: Table metadata with ``schema_name``, ``entity_set_name``,

0 commit comments

Comments
 (0)