File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libraries/botbuilder-dialogs/botbuilder/dialogs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -180,10 +180,10 @@ async def end_dialog(
180
180
181
181
def add_dialog (self , dialog : Dialog ) -> object :
182
182
"""
183
- Adds a :class:`Dialog` to the component dialog and returns the updated component.
183
+ Adds a :class:`botbuilder.dialogs. Dialog` to the component dialog and returns the updated component.
184
184
185
185
:param dialog: The dialog to add.
186
- :type dialog: :class:`Dialog`
186
+ :type dialog: :class:`botbuilder.dialogs. Dialog`
187
187
:return self: The updated :class:`ComponentDialog`
188
188
:rtype self: :class:`ComponentDialog`
189
189
"""
@@ -198,7 +198,7 @@ def find_dialog(self, dialog_id: str) -> Dialog:
198
198
199
199
:param dialog_id: The dialog to add.
200
200
:type dialog_id: str
201
- :return: The :class:`Dialog`; or None if there is not a match for the ID.
201
+ :return: The :class:`botbuilder.dialogs. Dialog`; or None if there is not a match for the ID.
202
202
"""
203
203
return self ._dialogs .find (dialog_id )
204
204
You can’t perform that action at this time.
0 commit comments