Fix spelling mistakes
This commit is contained in:
parent
67208046bc
commit
81bb76d3df
3 changed files with 10 additions and 10 deletions
|
@ -224,7 +224,7 @@ class OrgPrivateRepositories(ApiResource):
|
|||
|
||||
@resource('/v1/organization/<orgname>/members')
|
||||
@path_param('orgname', 'The name of the organization')
|
||||
class OrgnaizationMemberList(ApiResource):
|
||||
class OrganizationMemberList(ApiResource):
|
||||
""" Resource for listing the members of an organization. """
|
||||
|
||||
@require_scope(scopes.ORG_ADMIN)
|
||||
|
@ -266,7 +266,7 @@ class OrganizationMember(ApiResource):
|
|||
@require_scope(scopes.ORG_ADMIN)
|
||||
@nickname('getOrganizationMember')
|
||||
def get(self, orgname, membername):
|
||||
""" Get information on the specific orgnaization member. """
|
||||
""" Get information on the specific organization member. """
|
||||
permission = AdministerOrganizationPermission(orgname)
|
||||
if permission.can():
|
||||
try:
|
||||
|
|
Reference in a new issue