Skip to content

Commit 695bd5d

Browse files
authored
Fixed formatting
1 parent 299cec4 commit 695bd5d

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_turn_result.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
class DialogTurnResult:
77
"""
88
Result returned to the caller of one of the various stack manipulation methods.
9-
10-
..remarks::
11-
Use :class:`DialogContext.end_dialogAsync()` to end a :class:`Dialog` and
12-
return a result to the calling context.
9+
10+
Use :meth:`DialogContext.end_dialogAsync()` to end a :class:`Dialog` and
11+
return a result to the calling context.
1312
"""
1413
def __init__(self, status: DialogTurnStatus, result: object = None):
1514
"""
@@ -36,12 +35,12 @@ def result(self):
3635
"""
3736
Final result returned by a dialog that just completed.
3837
39-
..remarks::
40-
This will only be populated in certain cases:
41-
- The bot calls `DialogContext.begin_dialog()` to start a new dialog and the dialog ends immediately.
42-
- The bot calls `DialogContext.continue_dialog()` and a dialog that was active ends.
38+
.. note::
39+
This will only be populated in certain cases:
40+
* The bot calls :meth:`DialogContext.begin_dialog()` to start a new dialog and the dialog ends immediately.
41+
* The bot calls :meth:`DialogContext.continue_dialog()` and a dialog that was active ends.
4342
44-
:return self._result:
43+
:return self._result: Final result returned by a dialog that just completed.
4544
:rtype self._result: object
4645
"""
4746
return self._result

0 commit comments

Comments
 (0)