File tree 2 files changed +3
-3
lines changed
botbuilder-core/botbuilder/core
botbuilder-dialogs/botbuilder/dialogs/prompts
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ async def clear_state(self, turn_context: TurnContext):
132
132
:return: None
133
133
134
134
.. note::
135
- This function must be called in order for the cleared state to be persisted to the underlying store.
135
+ This function must be called in order for the cleared state to be persisted to the underlying store.
136
136
"""
137
137
if turn_context is None :
138
138
raise TypeError ("BotState.clear_state(): turn_context cannot be None." )
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ class Prompt(Dialog):
28
28
29
29
.. remarks::
30
30
When the prompt ends, it returns an object that represents the value it was prompted for.
31
- Use :method :`DialogSet.add()` or :method :`ComponentDialog.add_dialog()` to add a prompt to a dialog set or
31
+ Use :meth :`DialogSet.add()` or :meth :`ComponentDialog.add_dialog()` to add a prompt to a dialog set or
32
32
component dialog, respectively.
33
- Use :method :`DialogContext.prompt()` or :meth:`DialogContext.begin_dialog()` to start the prompt.
33
+ Use :meth :`DialogContext.prompt()` or :meth:`DialogContext.begin_dialog()` to start the prompt.
34
34
.. note::
35
35
If you start a prompt from a :class:`WaterfallStep` in a :class:`WaterfallDialog`, then the prompt result
36
36
will be available in the next step of the waterfall.
You can’t perform that action at this time.
0 commit comments