Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/botbuilder-core/botbuilder/core/bot_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def clear_state(self, turn_context: TurnContext):
:return: None

.. note::
This function must be called in order for the cleared state to be persisted to the underlying store.
This function must be called in order for the cleared state to be persisted to the underlying store.
"""
if turn_context is None:
raise TypeError("BotState.clear_state(): turn_context cannot be None.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class Prompt(Dialog):

.. remarks::
When the prompt ends, it returns an object that represents the value it was prompted for.
Use :method:`DialogSet.add()` or :method:`ComponentDialog.add_dialog()` to add a prompt to a dialog set or
Use :meth:`DialogSet.add()` or :meth:`ComponentDialog.add_dialog()` to add a prompt to a dialog set or
component dialog, respectively.
Use :method:`DialogContext.prompt()` or :meth:`DialogContext.begin_dialog()` to start the prompt.
Use :meth:`DialogContext.prompt()` or :meth:`DialogContext.begin_dialog()` to start the prompt.
.. note::
If you start a prompt from a :class:`WaterfallStep` in a :class:`WaterfallDialog`, then the prompt result
will be available in the next step of the waterfall.
Expand Down