Skip to content

Commit b0cb7a1

Browse files
Burak ArslanJamie Kirkpatrick
authored andcommitted
fix some typos
1 parent 591654b commit b0cb7a1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

soaplib/serializers/clazz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ class ClassSerializerMeta(type):
1212
def __init__(cls, clsname, bases, dictionary):
1313
'''
1414
This initializes the class, and sets all the appropriate
15-
types onto the class for serialization. This implemenation
15+
types onto the class for serialization. This implementation
1616
assumes that all attributes assigned to this class are internal
17-
serialzers for this class
17+
serializers for this class
1818
'''
1919
if not hasattr(cls,'types'):
2020
return

soaplib/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class SoapServiceBase(object):
7272
'''
7373
This class serves as the base for all soap services. Subclasses of this
7474
class will use the soapmethod and soapdocument decorators to flag methods
75-
to be exposed via soap. This class is repsonsible for generating the
75+
to be exposed via soap. This class is responsible for generating the
7676
wsdl for this object.
7777
'''
7878
def __init__(self):

soaplib/wsgi_soap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def exceptions(msg):
5555
def reset_request():
5656
'''
5757
This method clears the data stored in the threadlocal
58-
requets object
58+
request object
5959
'''
6060
request.environ = None
6161
request.header = None

0 commit comments

Comments
 (0)