diff --git a/docs/epy/epydoc.js b/docs/epy/epydoc.js
index e787dbc..119e71e 100644
--- a/docs/epy/epydoc.js
+++ b/docs/epy/epydoc.js
@@ -22,7 +22,7 @@ function toggle_private() {
}
}
// Update all table rows containing private objects. Note, we
- // use "" instead of "block" becaue IE & firefox disagree on what
+ // use "" instead of "block" because IE & firefox disagree on what
// this should be (block vs table-row), and "" just gives the
// default for both browsers.
var elts = document.getElementsByTagName("tr");
diff --git a/docs/epy/oauth2client.client-pysrc.html b/docs/epy/oauth2client.client-pysrc.html
index 947e8f2..7071140 100644
--- a/docs/epy/oauth2client.client-pysrc.html
+++ b/docs/epy/oauth2client.client-pysrc.html
@@ -2100,7 +2100,7 @@ oauth2client.util.logger" class="py-name" href="#" onclick="return doclink('link
1779 An OAuth2Credentials object that can be used to authorize requests.
1780
1781 Raises:
-1782 FlowExchangeError: if a problem occured exchanging the code for a
+1782 FlowExchangeError: if a problem occurred exchanging the code for a
1783 refresh_token.
1784 ValueError: if code and device_flow_info are both provided or both
1785 missing.
diff --git a/docs/epy/oauth2client.client.OAuth2WebServerFlow-class.html b/docs/epy/oauth2client.client.OAuth2WebServerFlow-class.html
index 526cfb6..012a35f 100644
--- a/docs/epy/oauth2client.client.OAuth2WebServerFlow-class.html
+++ b/docs/epy/oauth2client.client.OAuth2WebServerFlow-class.html
@@ -410,7 +410,7 @@ Returns:
An OAuth2Credentials object that can be used to authorize requests.
Raises:
- FlowExchangeError: if a problem occured exchanging the code for a
+ FlowExchangeError: if a problem occurred exchanging the code for a
refresh_token.
ValueError: if code and device_flow_info are both provided or both
missing.
diff --git a/docs/epy/oauth2client.locked_file-module.html b/docs/epy/oauth2client.locked_file-module.html
index 0d0a44e..736bc14 100644
--- a/docs/epy/oauth2client.locked_file-module.html
+++ b/docs/epy/oauth2client.locked_file-module.html
@@ -69,7 +69,7 @@ Usage:
print 'Acquired filename with r+b mode'
f.file_handle().write('locked data')
else:
- print 'Aquired filename with rb mode'
+ print 'Acquired filename with rb mode'
f.unlock_and_close()
diff --git a/docs/epy/oauth2client.locked_file-pysrc.html b/docs/epy/oauth2client.locked_file-pysrc.html
index e6a13a4..580cfd3 100644
--- a/docs/epy/oauth2client.locked_file-pysrc.html
+++ b/docs/epy/oauth2client.locked_file-pysrc.html
@@ -82,7 +82,7 @@
24 print 'Acquired filename with r+b mode'
25 f.file_handle().write('locked data')
26 else:
- 27 print 'Aquired filename with rb mode'
+ 27 print 'Acquired filename with rb mode'
28 f.unlock_and_close()
29 """
30
diff --git a/oauth2client/client.py b/oauth2client/client.py
index 4e8fa9a..882bde1 100644
--- a/oauth2client/client.py
+++ b/oauth2client/client.py
@@ -1793,7 +1793,7 @@ class OAuth2WebServerFlow(Flow):
An OAuth2Credentials object that can be used to authorize requests.
Raises:
- FlowExchangeError: if a problem occured exchanging the code for a
+ FlowExchangeError: if a problem occurred exchanging the code for a
refresh_token.
ValueError: if code and device_flow_info are both provided or both
missing.
diff --git a/oauth2client/locked_file.py b/oauth2client/locked_file.py
index 78b6dcd..9147828 100644
--- a/oauth2client/locked_file.py
+++ b/oauth2client/locked_file.py
@@ -24,7 +24,7 @@ Usage:
print('Acquired filename with r+b mode')
f.file_handle().write('locked data')
else:
- print('Aquired filename with rb mode')
+ print('Acquired filename with rb mode')
f.unlock_and_close()
"""