Skip to content

Commit 569ce6d

Browse files
author
sambyers
committed
spelling and phrasing of binding methods
1 parent fd1053a commit 569ce6d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/user/quickstart.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -472,16 +472,16 @@ contain all of the returned objects.
472472
Extending the API with bound methods
473473
------------------------------------
474474

475-
Extending the API is simple by binding your own methods to the top level API. By binding a method to
476-
the WebexTeamsAPI, you can extend functionality and leverage all of the objects and quality of life
477-
features.
475+
As the Webex Teams API is developed and features are added, it may be necessary to add functions to access those features.
476+
Extending the API is simple by binding your own methods to the top level API instance. By binding a method, you can
477+
extend functionality and leverage all of the objects and quality of life features of WebexTeamsAPI.
478478

479479
.. code-block:: python
480480
481-
>>> new_function():
481+
>>> new_method():
482482
... pass
483-
>>> WebexTeamsAPI().new_function = new_function
484-
>>> output = WebexTeamsAPI.new_function(params)
483+
>>> WebexTeamsAPI().new_method = new_method
484+
>>> output = WebexTeamsAPI.new_method(params)
485485
486486
487487
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*

0 commit comments

Comments
 (0)