File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libraries/botbuilder-dialogs/botbuilder/dialogs/prompts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class ActivityPrompt(Dialog, ABC):
24
24
"""
25
25
Waits for an activity to be received.
26
26
27
- .. remarks:
27
+ .. remarks::
28
28
This prompt requires a validator be passed in and is useful when waiting for non-message
29
29
activities like an event to be received. The validator can ignore received events until the
30
30
expected activity is received.
@@ -156,10 +156,10 @@ async def resume_dialog( # pylint: disable=unused-argument
156
156
Called when a prompt dialog resumes being the active dialog on the dialog stack, such
157
157
as when the previous active dialog on the stack completes.
158
158
159
- .. note :
159
+ .. remarks: :
160
160
Prompts are typically leaf nodes on the stack but the dev is free to push other dialogs
161
161
on top of the stack which will result in the prompt receiving an unexpected call to
162
- :meth:resume_dialog() when the pushed on dialog ends.
162
+ :meth:`ActivityPrompt. resume_dialog()` when the pushed on dialog ends.
163
163
To avoid the prompt prematurely ending, we need to implement this method and
164
164
simply re-prompt the user.
165
165
You can’t perform that action at this time.
0 commit comments