Skip to content

Commit 6ff244b

Browse files
authored
Merge pull request #674 from microsoft/mm-api-ref-style-issues
mm-api-ref-style-issues-fixes
2 parents 2664eaa + ef87e20 commit 6ff244b

File tree

2 files changed

+3
-3
lines changed
  • libraries

2 files changed

+3
-3
lines changed

libraries/botbuilder-core/botbuilder/core/bot_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async def clear_state(self, turn_context: TurnContext):
132132
:return: None
133133
134134
.. 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.
136136
"""
137137
if turn_context is None:
138138
raise TypeError("BotState.clear_state(): turn_context cannot be None.")

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class Prompt(Dialog):
2828
2929
.. remarks::
3030
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
3232
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.
3434
.. note::
3535
If you start a prompt from a :class:`WaterfallStep` in a :class:`WaterfallDialog`, then the prompt result
3636
will be available in the next step of the waterfall.

0 commit comments

Comments
 (0)