Skip to content

Commit

Permalink
docs: fix grammar errors
Browse files Browse the repository at this point in the history
  • Loading branch information
berrytern committed Oct 15, 2024
1 parent 02c35e6 commit 97d9197
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions amqp_client_python/domain/models/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ def __init__(
self, options: Options, ssl_options: Optional[SSLOptions] = None
) -> None:
"""
Create an Config object thats hold and mount the connection information.
Create a Config object that holds and manages the connection information.
Args:
options: hold information for estabilish connection
ssl_options: hold information for estabilish SSL connections
options: holds information for establishing connection
ssl_options: holds information for establishing SSL connections
Returns:
Expand All @@ -32,7 +32,7 @@ def __init__(

def build(self) -> "Config":
"""
Create an Config object thats hold and mount the connection information.
Create a Config object that holds and manages the connection information.
Args:
Expand Down
2 changes: 1 addition & 1 deletion amqp_client_python/domain/models/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(
**kwargs: Dict[str, Any]
) -> None:
"""
Create an Options object that hold the credentials and configs options.
Create an Options object that holds the credentials and configuration options.
Args:
queue_name: name of queue that will be used for subscriptions
Expand Down
3 changes: 1 addition & 2 deletions amqp_client_python/domain/models/ssl_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ def __init__(
self, certfile_path: str, keyfile_path: str, ca_certs_path: str
) -> None:
"""
Create an SslOptions object that hold the certs paths.
Create an SslOptions object that holds the cert paths.
Args:
certfile_path: cert file path string
keyfile_path: private key file path string
ca_certs_path: ca file path string
Returns:
Um dicionário com as notas da escala e os graus.
Raises:
Expand Down

0 comments on commit 97d9197

Please sign in to comment.