@@ -504,7 +504,7 @@ public async Task<UserRecord> GetUserByPhoneNumberAsync(
504504 /// </summary>
505505 /// <param name="identifiers">The identifiers used to indicate which user records should be
506506 /// 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>
508508 /// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
509509 /// than 100 identifiers are specified.</exception>
510510 public async Task < GetUsersResult > GetUsersAsync (
@@ -529,7 +529,7 @@ public async Task<GetUsersResult> GetUsersAsync(
529529 /// returned. Must have 100 entries or fewer.</param>
530530 /// <param name="cancellationToken">A cancellation token to monitor the asynchronous
531531 /// 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>
533533 /// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
534534 /// than 100 identifiers are specified.</exception>
535535 public async Task < GetUsersResult > GetUsersAsync (
@@ -675,7 +675,7 @@ await userManager.DeleteUserAsync(uid, cancellationToken)
675675 /// </summary>
676676 /// <param name="uids">The uids of the users to be deleted. Must have 1000 or fewer entries.
677677 /// </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
679679 /// deletions, as well as the array of errors that correspond to the failed deletions.
680680 /// </returns>
681681 /// <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
707707 /// </param>
708708 /// <param name="cancellationToken">A cancellation token to monitor the asynchronous
709709 /// 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
711711 /// deletions, as well as the array of errors that correspond to the failed deletions.
712712 /// </returns>
713713 /// <exception cref="ArgumentException">If any of the identifiers are invalid or if more
0 commit comments