@@ -504,7 +504,7 @@ public async Task<UserRecord> GetUserByPhoneNumberAsync(
504
504
/// </summary>
505
505
/// <param name="identifiers">The identifiers used to indicate which user records should be
506
506
/// returned. Must have 100 entries or fewer.</param>
507
- /// <returns>A {@code Task} that resolves to the corresponding user records.</returns>
507
+ /// <returns>A task that resolves to the corresponding user records.</returns>
508
508
/// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
509
509
/// than 100 identifiers are specified.</exception>
510
510
public async Task < GetUsersResult > GetUsersAsync (
@@ -529,7 +529,7 @@ public async Task<GetUsersResult> GetUsersAsync(
529
529
/// returned. Must have 100 entries or fewer.</param>
530
530
/// <param name="cancellationToken">A cancellation token to monitor the asynchronous
531
531
/// operation.</param>
532
- /// <returns>A {@code Task} that resolves to the corresponding user records.</returns>
532
+ /// <returns>A task that resolves to the corresponding user records.</returns>
533
533
/// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
534
534
/// than 100 identifiers are specified.</exception>
535
535
public async Task < GetUsersResult > GetUsersAsync (
@@ -675,7 +675,7 @@ await userManager.DeleteUserAsync(uid, cancellationToken)
675
675
/// </summary>
676
676
/// <param name="uids">The uids of the users to be deleted. Must have 1000 or fewer entries.
677
677
/// </param>
678
- /// <returns>A {@code Task} that resolves to the total number of successful/failed
678
+ /// <returns>A task that resolves to the total number of successful/failed
679
679
/// deletions, as well as the array of errors that correspond to the failed deletions.
680
680
/// </returns>
681
681
/// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
@@ -707,7 +707,7 @@ public async Task<DeleteUsersResult> DeleteUsersAsync(IReadOnlyList<string> uids
707
707
/// </param>
708
708
/// <param name="cancellationToken">A cancellation token to monitor the asynchronous
709
709
/// operation.</param>
710
- /// <returns>A {@code Task} that resolves to the total number of successful/failed
710
+ /// <returns>A task that resolves to the total number of successful/failed
711
711
/// deletions, as well as the array of errors that correspond to the failed deletions.
712
712
/// </returns>
713
713
/// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
0 commit comments