Skip to content

Commit d5ed7fd

Browse files
committed
Fix typos
1 parent 72f8eaf commit d5ed7fd

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

mercadopago/resources/identification_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IdentificationType(MPBase):
1010
"""
1111

1212
def list_all(self, request_options=None):
13-
"""[Click here for more infos](https://www.mercadopago.com.br/developers/en/reference/identification_types/_identification_types/get/) # pylint: disable=line-too-long
13+
"""[Click here for more info](https://www.mercadopago.com.br/developers/en/reference/identification_types/_identification_types/get/) # pylint: disable=line-too-long
1414
1515
Args:
1616
request_options (mercadopago.config.request_options, optional): An instance of

mercadopago/resources/payment_methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class PaymentMethods(MPBase):
1010
"""
1111

1212
def list_all(self, request_options=None):
13-
"""[Click here for more infos](https://www.mercadopago.com/developers/en/reference/payment_methods/_payment_methods/get/) # pylint: disable=line-too-long
13+
"""[Click here for more info](https://www.mercadopago.com/developers/en/reference/payment_methods/_payment_methods/get/) # pylint: disable=line-too-long
1414
1515
Args:
1616
request_options (mercadopago.config.request_options, optional): An instance of

mercadopago/resources/preference.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Preference(MPBase):
1313
"""
1414

1515
def get(self, preference_id, request_options=None):
16-
"""[Click here for more infos](https://www.mercadopago.com/developers/en/reference/preferences/_checkout_preferences_id/get/) # pylint: disable=line-too-long
16+
"""[Click here for more info](https://www.mercadopago.com/developers/en/reference/preferences/_checkout_preferences_id/get/) # pylint: disable=line-too-long
1717
1818
Args:
1919
preference_id (str): The Preference ID
@@ -28,7 +28,7 @@ def get(self, preference_id, request_options=None):
2828
request_options=request_options)
2929

3030
def update(self, preference_id, preference_object, request_options=None):
31-
"""[Click here for more infos](https://www.mercadopago.com/developers/en/reference/preferences/_checkout_preferences_id/put/) # pylint: disable=line-too-long
31+
"""[Click here for more info](https://www.mercadopago.com/developers/en/reference/preferences/_checkout_preferences_id/put/) # pylint: disable=line-too-long
3232
3333
Args:
3434
preference_id (str): The Preference ID
@@ -50,7 +50,7 @@ def update(self, preference_id, preference_object, request_options=None):
5050
request_options=request_options)
5151

5252
def create(self, preference_object, request_options=None):
53-
"""[Click here for more infos](https://www.mercadopago.com/developers/en/reference/preferences/_checkout_preferences/post/) # pylint: disable=line-too-long
53+
"""[Click here for more info](https://www.mercadopago.com/developers/en/reference/preferences/_checkout_preferences/post/) # pylint: disable=line-too-long
5454
5555
Args:
5656
preference_object (dict): Preference object to be created

mercadopago/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(
4646
):
4747
"""Construct ur SDK Object to have access to all APIs modules.
4848
Args:
49-
[Click here for more infos](https://www.mercadopago.com/mlb/account/credentials)
49+
[Click here for more info](https://www.mercadopago.com/mlb/account/credentials)
5050
http_client (mercadopago.http.http_client, optional): An implementation of
5151
HttpClient can be pass to be used to make the REST calls. Defaults to None.
5252
request_options (mercadopago.config.request_options, optional): An instance

0 commit comments

Comments
 (0)