Skip to content

Commit e5fae34

Browse files
committed
Minor docs edits.
1 parent 6f2940f commit e5fae34

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

docs/README.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ <h3>Navigation</h3>
3232
<li class="right" style="margin-right: 10px">
3333
<a href="genindex.html" title="General Index"
3434
accesskey="I">index</a></li>
35+
<li class="right" >
36+
<a href="py-modindex.html" title="Python Module Index"
37+
>modules</a> |</li>
3538
<li><a href="index.html">OpenTok Python SDK 2.2 2.2.0 documentation</a> &raquo;</li>
3639
</ul>
3740
</div>
@@ -298,6 +301,9 @@ <h3>Navigation</h3>
298301
<li class="right" style="margin-right: 10px">
299302
<a href="genindex.html" title="General Index"
300303
>index</a></li>
304+
<li class="right" >
305+
<a href="py-modindex.html" title="Python Module Index"
306+
>modules</a> |</li>
301307
<li><a href="index.html">OpenTok Python SDK 2.2 2.2.0 documentation</a> &raquo;</li>
302308
</ul>
303309
</div>

docs/docs/opentok.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
226226
<dt id="opentok.opentok.ArchiveModes">
227227
<em class="property">class </em><tt class="descclassname">opentok.opentok.</tt><tt class="descname">ArchiveModes</tt><a class="headerlink" href="#opentok.opentok.ArchiveModes" title="Permalink to this definition"></a></dt>
228228
<dd><p>Bases: <tt class="xref py py-class docutils literal"><span class="pre">enum.Enum</span></tt></p>
229-
<p>List of valid settings for the archive_mode parameter of the OpenTok.createSession()
229+
<p>List of valid settings for the archive_mode parameter of the OpenTok.create_Session()
230230
method.</p>
231231
<dl class="attribute">
232232
<dt id="opentok.opentok.ArchiveModes.always">
@@ -246,7 +246,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
246246
<dt id="opentok.opentok.MediaModes">
247247
<em class="property">class </em><tt class="descclassname">opentok.opentok.</tt><tt class="descname">MediaModes</tt><a class="headerlink" href="#opentok.opentok.MediaModes" title="Permalink to this definition"></a></dt>
248248
<dd><p>Bases: <tt class="xref py py-class docutils literal"><span class="pre">enum.Enum</span></tt></p>
249-
<p>List of valid settings for the mediaMode parameter of the OpenTok.createSession() method.</p>
249+
<p>List of valid settings for the mediaMode parameter of the OpenTok.create_session() method.</p>
250250
<dl class="attribute">
251251
<dt id="opentok.opentok.MediaModes.relayed">
252252
<tt class="descname">relayed</tt><em class="property"> = None</em><a class="headerlink" href="#opentok.opentok.MediaModes.relayed" title="Permalink to this definition"></a></dt>
@@ -559,7 +559,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
559559
<em class="property">class </em><tt class="descclassname">opentok.session.</tt><tt class="descname">Session</tt><big>(</big><em>sdk</em>, <em>session_id</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#opentok.session.Session" title="Permalink to this definition"></a></dt>
560560
<dd><p>Bases: <tt class="xref py py-class docutils literal"><span class="pre">object</span></tt></p>
561561
<p>Represents an OpenTok session.</p>
562-
<p>Use the OpenTok.createSession() method to create an OpenTok session. Use the
562+
<p>Use the OpenTok.create_session() method to create an OpenTok session. Use the
563563
session_id property of the Session object to get the session ID.</p>
564564
<table class="docutils field-list" frame="void" rules="none">
565565
<col class="field-name" />

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

opentok/opentok.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Roles(Enum):
3333
"""
3434

3535
class MediaModes(Enum):
36-
"""List of valid settings for the mediaMode parameter of the OpenTok.createSession() method."""
36+
"""List of valid settings for the mediaMode parameter of the OpenTok.create_session() method."""
3737
routed = u('disabled')
3838
"""The session will transmit streams using the OpenTok Media Server."""
3939
relayed = u('enabled')
@@ -42,7 +42,7 @@ class MediaModes(Enum):
4242
their streams will be relayed using the OpenTok TURN Server."""
4343

4444
class ArchiveModes(Enum):
45-
"""List of valid settings for the archive_mode parameter of the OpenTok.createSession()
45+
"""List of valid settings for the archive_mode parameter of the OpenTok.create_Session()
4646
method."""
4747
manual = u('manual')
4848
"""The session will be manually archived."""

opentok/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ class Session(object):
22
"""
33
Represents an OpenTok session.
44
5-
Use the OpenTok.createSession() method to create an OpenTok session. Use the
5+
Use the OpenTok.create_session() method to create an OpenTok session. Use the
66
session_id property of the Session object to get the session ID.
77
88
:ivar String session_id: The session ID.

0 commit comments

Comments
 (0)