Skip to content

Commit e89e1a1

Browse files
committed
doc(typos): Correct typos by silly me
1 parent 795c630 commit e89e1a1

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

ibm_cloud_sdk_core/base_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self,
4343
display_name=None):
4444
"""
4545
:attr str url: The url for service api calls
46-
:attr Athenticator authenticator: The authenticator for authentication
46+
:attr Authenticator authenticator: The authenticator for authentication
4747
:attr bool disable_ssl_verification: enables/ disabled ssl verification
4848
:attr str display_name the name used for mapping services in environment file
4949
"""

ibm_cloud_sdk_core/iam_token_manager.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ def set_client_id_and_secret(self, client_id, client_secret):
8787
This consists of the client_id and secret.
8888
These values are used to form the basic authorization header that
8989
is used when interacting with the IAM token server.
90-
If these values are not supplied, then a default Authorization header
91-
is used.
9290
"""
9391
self.client_id = client_id
9492
self.client_secret = client_secret

ibm_cloud_sdk_core/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def get_authenticator_from_environment(service_name):
6666
if config:
6767
authenticator = contruct_authenticator(config)
6868

69-
# 3. From env variables
69+
# 2. From env variables
7070
if not authenticator:
7171
config = read_from_env_variables(service_name)
7272
if config:

0 commit comments

Comments
 (0)