Skip to content

Commit 534e838

Browse files
committed
Fixing a typo; Updated API docs
1 parent 1b34786 commit 534e838

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,12 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
264264
/// <summary>
265265
/// Creates a new user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
266266
/// </summary>
267-
/// <param name="args">Attributes that will be added to the new user account.</param>
267+
/// <param name="args">Attributes to add to the new user account.</param>
268268
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
269269
/// the newly created user account.</returns>
270270
/// <exception cref="ArgumentNullException">If <paramref name="args"/> is null.</exception>
271271
/// <exception cref="ArgumentException">If any of the values in <paramref name="args"/> are invalid.</exception>
272-
/// <exception cref="FirebaseException">If an error occurs while creating rhe user account.</exception>
272+
/// <exception cref="FirebaseException">If an error occurs while creating the user account.</exception>
273273
public async Task<UserRecord> CreateUserAsync(UserRecordArgs args)
274274
{
275275
return await this.CreateUserAsync(args, default(CancellationToken))
@@ -279,14 +279,14 @@ public async Task<UserRecord> CreateUserAsync(UserRecordArgs args)
279279
/// <summary>
280280
/// Creates a new user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
281281
/// </summary>
282-
/// <param name="args">Attributes that will be added to the new user account.</param>
282+
/// <param name="args">Attributes to add to the new user account.</param>
283283
/// <param name="cancellationToken">A cancellation token to monitor the asynchronous
284284
/// operation.</param>
285285
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
286286
/// the newly created user account.</returns>
287287
/// <exception cref="ArgumentNullException">If <paramref name="args"/> is null.</exception>
288288
/// <exception cref="ArgumentException">If any of the values in <paramref name="args"/> are invalid.</exception>
289-
/// <exception cref="FirebaseException">If an error occurs while creating rhe user account.</exception>
289+
/// <exception cref="FirebaseException">If an error occurs while creating the user account.</exception>
290290
public async Task<UserRecord> CreateUserAsync(
291291
UserRecordArgs args, CancellationToken cancellationToken)
292292
{
@@ -405,7 +405,7 @@ public async Task<UserRecord> GetUserByPhoneNumberAsync(
405405
/// Updates an existing user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
406406
/// The <see cref="UserRecordArgs.Uid"/> property must be specified.
407407
/// </summary>
408-
/// <param name="args">Attributes that will be updated.</param>
408+
/// <param name="args">The attributes to update.</param>
409409
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
410410
/// the updated user account.</returns>
411411
/// <exception cref="ArgumentNullException">If <paramref name="args"/> is null.</exception>
@@ -421,7 +421,7 @@ public async Task<UserRecord> UpdateUserAsync(UserRecordArgs args)
421421
/// Updates an existing user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
422422
/// The <see cref="UserRecordArgs.Uid"/> property must be specified.
423423
/// </summary>
424-
/// <param name="args">Attributes that will be updated.</param>
424+
/// <param name="args">The attributes to update.</param>
425425
/// <param name="cancellationToken">A cancellation token to monitor the asynchronous
426426
/// operation.</param>
427427
/// <returns>A task that completes with a <see cref="UserRecord"/> representing

0 commit comments

Comments
 (0)