Skip to content

Commit 3956b95

Browse files
committed
Merge pull request googleapis#67 from vlajos/typofixes-vlajos-20141108
typo fixes - https://github.com/vlajos/misspell_fixer
2 parents 7d3b1ae + 017d051 commit 3956b95

7 files changed

+7
-7
lines changed

docs/epy/epydoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function toggle_private() {
2222
}
2323
}
2424
// Update all table rows containing private objects. Note, we
25-
// use "" instead of "block" becaue IE & firefox disagree on what
25+
// use "" instead of "block" because IE & firefox disagree on what
2626
// this should be (block vs table-row), and "" just gives the
2727
// default for both browsers.
2828
var elts = document.getElementsByTagName("tr");

docs/epy/oauth2client.client-pysrc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2100,7 +2100,7 @@ <h1 class="epydoc">Source Code for <a href="oauth2client.client-module.html">Mod
21002100
<a name="L1779"></a><tt class="py-lineno">1779</tt> <tt class="py-line"><tt class="py-docstring"> An OAuth2Credentials object that can be used to authorize requests.</tt> </tt>
21012101
<a name="L1780"></a><tt class="py-lineno">1780</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
21022102
<a name="L1781"></a><tt class="py-lineno">1781</tt> <tt class="py-line"><tt class="py-docstring"> Raises:</tt> </tt>
2103-
<a name="L1782"></a><tt class="py-lineno">1782</tt> <tt class="py-line"><tt class="py-docstring"> FlowExchangeError: if a problem occured exchanging the code for a</tt> </tt>
2103+
<a name="L1782"></a><tt class="py-lineno">1782</tt> <tt class="py-line"><tt class="py-docstring"> FlowExchangeError: if a problem occurred exchanging the code for a</tt> </tt>
21042104
<a name="L1783"></a><tt class="py-lineno">1783</tt> <tt class="py-line"><tt class="py-docstring"> refresh_token.</tt> </tt>
21052105
<a name="L1784"></a><tt class="py-lineno">1784</tt> <tt class="py-line"><tt class="py-docstring"> ValueError: if code and device_flow_info are both provided or both</tt> </tt>
21062106
<a name="L1785"></a><tt class="py-lineno">1785</tt> <tt class="py-line"><tt class="py-docstring"> missing.</tt> </tt>

docs/epy/oauth2client.client.OAuth2WebServerFlow-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">step2_exchange</span
410410
An OAuth2Credentials object that can be used to authorize requests.
411411

412412
Raises:
413-
FlowExchangeError: if a problem occured exchanging the code for a
413+
FlowExchangeError: if a problem occurred exchanging the code for a
414414
refresh_token.
415415
ValueError: if code and device_flow_info are both provided or both
416416
missing.

docs/epy/oauth2client.locked_file-module.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ <h1 class="epydoc">Module locked_file</h1><p class="nomargin-top"><span class="c
6969
print 'Acquired filename with r+b mode'
7070
f.file_handle().write('locked data')
7171
else:
72-
print 'Aquired filename with rb mode'
72+
print 'Acquired filename with rb mode'
7373
f.unlock_and_close()
7474

7575
</pre>

docs/epy/oauth2client.locked_file-pysrc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h1 class="epydoc">Source Code for <a href="oauth2client.locked_file-module.html
8282
<a name="L24"></a><tt class="py-lineno"> 24</tt> <tt class="py-line"><tt class="py-docstring"> print 'Acquired filename with r+b mode'</tt> </tt>
8383
<a name="L25"></a><tt class="py-lineno"> 25</tt> <tt class="py-line"><tt class="py-docstring"> f.file_handle().write('locked data')</tt> </tt>
8484
<a name="L26"></a><tt class="py-lineno"> 26</tt> <tt class="py-line"><tt class="py-docstring"> else:</tt> </tt>
85-
<a name="L27"></a><tt class="py-lineno"> 27</tt> <tt class="py-line"><tt class="py-docstring"> print 'Aquired filename with rb mode'</tt> </tt>
85+
<a name="L27"></a><tt class="py-lineno"> 27</tt> <tt class="py-line"><tt class="py-docstring"> print 'Acquired filename with rb mode'</tt> </tt>
8686
<a name="L28"></a><tt class="py-lineno"> 28</tt> <tt class="py-line"><tt class="py-docstring"> f.unlock_and_close()</tt> </tt>
8787
<a name="L29"></a><tt class="py-lineno"> 29</tt> <tt class="py-line"><tt class="py-docstring">"""</tt> </tt>
8888
<a name="L30"></a><tt class="py-lineno"> 30</tt> <tt class="py-line"> </tt>

oauth2client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1793,7 +1793,7 @@ def step2_exchange(self, code=None, http=None, device_flow_info=None):
17931793
An OAuth2Credentials object that can be used to authorize requests.
17941794
17951795
Raises:
1796-
FlowExchangeError: if a problem occured exchanging the code for a
1796+
FlowExchangeError: if a problem occurred exchanging the code for a
17971797
refresh_token.
17981798
ValueError: if code and device_flow_info are both provided or both
17991799
missing.

oauth2client/locked_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
print('Acquired filename with r+b mode')
2525
f.file_handle().write('locked data')
2626
else:
27-
print('Aquired filename with rb mode')
27+
print('Acquired filename with rb mode')
2828
f.unlock_and_close()
2929
"""
3030

0 commit comments

Comments
 (0)