Skip to content

Commit 1a2e829

Browse files
author
Michael Miele
committed
Update prompt.py
Changed reamrks to note in methods.
1 parent f98a391 commit 1a2e829

File tree

1 file changed

+4
-4
lines changed
  • libraries/botbuilder-dialogs/botbuilder/dialogs/prompts

1 file changed

+4
-4
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def begin_dialog(
6666
:return: The dialog turn result
6767
:rtype: :class:`DialogTurnResult`
6868
69-
.. remarks::
69+
.. note::
7070
If the task is successful, the result indicates whether the prompt is still active
7171
after the turn has been processed by the prompt.
7272
"""
@@ -105,7 +105,7 @@ async def continue_dialog(self, dialog_context: DialogContext):
105105
:return: The dialog turn result
106106
:rtype: :class:`DialogTurnResult`
107107
108-
.. remarks::
108+
.. note::
109109
If the task is successful, the result indicates whether the dialog is still
110110
active after the turn has been processed by the dialog.
111111
The prompt generally continues to receive the user's replies until it accepts the
@@ -162,7 +162,7 @@ async def resume_dialog(
162162
:return: The dialog turn result
163163
:rtype: :class:`DialogTurnResult`
164164
165-
.. remarks::
165+
.. note::
166166
If the task is successful, the result indicates whether the dialog is still
167167
active after the turn has been processed by the dialog.
168168
Prompts are typically leaf nodes on the stack but the dev is free to push other dialogs
@@ -264,7 +264,7 @@ def append_choices(
264264
:return: A :class:Task representing the asynchronous operation
265265
:rtype: :class:Task
266266
267-
.. remarks::
267+
.. note::
268268
If the task is successful, the result contains the updated activity.
269269
"""
270270
# Get base prompt text (if any)

0 commit comments

Comments
 (0)