Skip to content

Commit

Permalink
docs: Fix simple typo, parseing -> parsing (spec-first#1194)
Browse files Browse the repository at this point in the history
There is a small typo in connexion/operations/abstract.py, connexion/operations/openapi.py, connexion/operations/swagger2.py.

Should read `parsing` rather than `parseing`.
  • Loading branch information
timgates42 committed Mar 28, 2020
1 parent 96bdcb0 commit 5bf7600
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion connexion/operations/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(self, api, method, path, operation, resolver,
:param pythonic_params: When True CamelCase parameters are converted to snake_case and an underscore is appended
to any shadowed built-ins
:type pythonic_params: bool
:param uri_parser_class: class to use for uri parseing
:param uri_parser_class: class to use for uri parsing
:type uri_parser_class: AbstractURIParser
:param pass_context_arg_name: If not None will try to inject the request context to the function using this
name.
Expand Down
2 changes: 1 addition & 1 deletion connexion/operations/openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, api, method, path, operation, resolver, path_parameters=None,
:param pythonic_params: When True CamelCase parameters are converted to snake_case and an underscore is appended
to any shadowed built-ins
:type pythonic_params: bool
:param uri_parser_class: class to use for uri parseing
:param uri_parser_class: class to use for uri parsing
:type uri_parser_class: AbstractURIParser
:param pass_context_arg_name: If not None will try to inject the request context to the function using this
name.
Expand Down
2 changes: 1 addition & 1 deletion connexion/operations/swagger2.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(self, api, method, path, operation, resolver, app_produces, app_con
:param pythonic_params: When True CamelCase parameters are converted to snake_case and an underscore is appended
to any shadowed built-ins
:type pythonic_params: bool
:param uri_parser_class: class to use for uri parseing
:param uri_parser_class: class to use for uri parsing
:type uri_parser_class: AbstractURIParser
:param pass_context_arg_name: If not None will try to inject the request context to the function using this
name.
Expand Down

0 comments on commit 5bf7600

Please sign in to comment.