@@ -264,12 +264,12 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
264
264
/// <summary>
265
265
/// Creates a new user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
266
266
/// </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>
268
268
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
269
269
/// the newly created user account.</returns>
270
270
/// <exception cref="ArgumentNullException">If <paramref name="args"/> is null.</exception>
271
271
/// <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>
273
273
public async Task < UserRecord > CreateUserAsync ( UserRecordArgs args )
274
274
{
275
275
return await this . CreateUserAsync ( args , default ( CancellationToken ) )
@@ -279,14 +279,14 @@ public async Task<UserRecord> CreateUserAsync(UserRecordArgs args)
279
279
/// <summary>
280
280
/// Creates a new user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
281
281
/// </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>
283
283
/// <param name="cancellationToken">A cancellation token to monitor the asynchronous
284
284
/// operation.</param>
285
285
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
286
286
/// the newly created user account.</returns>
287
287
/// <exception cref="ArgumentNullException">If <paramref name="args"/> is null.</exception>
288
288
/// <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>
290
290
public async Task < UserRecord > CreateUserAsync (
291
291
UserRecordArgs args , CancellationToken cancellationToken )
292
292
{
@@ -405,7 +405,7 @@ public async Task<UserRecord> GetUserByPhoneNumberAsync(
405
405
/// Updates an existing user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
406
406
/// The <see cref="UserRecordArgs.Uid"/> property must be specified.
407
407
/// </summary>
408
- /// <param name="args">Attributes that will be updated .</param>
408
+ /// <param name="args">The attributes to update .</param>
409
409
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
410
410
/// the updated user account.</returns>
411
411
/// <exception cref="ArgumentNullException">If <paramref name="args"/> is null.</exception>
@@ -421,7 +421,7 @@ public async Task<UserRecord> UpdateUserAsync(UserRecordArgs args)
421
421
/// Updates an existing user account with the attributes contained in the specified <see cref="UserRecordArgs"/>.
422
422
/// The <see cref="UserRecordArgs.Uid"/> property must be specified.
423
423
/// </summary>
424
- /// <param name="args">Attributes that will be updated .</param>
424
+ /// <param name="args">The attributes to update .</param>
425
425
/// <param name="cancellationToken">A cancellation token to monitor the asynchronous
426
426
/// operation.</param>
427
427
/// <returns>A task that completes with a <see cref="UserRecord"/> representing
0 commit comments