Skip to content

Commit b3fda0b

Browse files
committed
fix comment capitalization
1 parent 91988aa commit b3fda0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/python/fusionauth/fusionauth_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def check_change_password_using_login_id_and_login_id_types(self, login_id, logi
236236
237237
Attributes:
238238
login_id: The loginId of the User that you intend to change the password for.
239-
login_id_types: the identity types that FusionAuth will compare the loginId to.
239+
login_id_types: The identity types that FusionAuth will compare the loginId to.
240240
"""
241241
return self.start().uri('/api/user/change-password') \
242242
.url_parameter('loginId', self.convert_true_false(login_id)) \
@@ -3436,7 +3436,7 @@ def retrieve_user_by_login_id_with_login_id_types(self, login_id, login_id_types
34363436
34373437
Attributes:
34383438
login_id: The email or username of the user.
3439-
login_id_types: the identity types that FusionAuth will compare the loginId to.
3439+
login_id_types: The identity types that FusionAuth will compare the loginId to.
34403440
"""
34413441
return self.start().uri('/api/user') \
34423442
.url_parameter('loginId', self.convert_true_false(login_id)) \
@@ -3635,7 +3635,7 @@ def retrieve_user_login_report_by_login_id_and_login_id_types(self, login_id, st
36353635
login_id: The userId id.
36363636
start: The start instant as UTC milliseconds since Epoch.
36373637
end: The end instant as UTC milliseconds since Epoch.
3638-
login_id_types: the identity types that FusionAuth will compare the loginId to.
3638+
login_id_types: The identity types that FusionAuth will compare the loginId to.
36393639
"""
36403640
return self.start().uri('/api/report/login') \
36413641
.url_parameter('applicationId', self.convert_true_false(application_id)) \

0 commit comments

Comments
 (0)