Skip to content

Commit 7686572

Browse files
authored
Clearer pageSizeHint description (Azure#26017)
1 parent 303a721 commit 7686572

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sdk/core/Azure.Core/src/AsyncPageable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ protected AsyncPageable(CancellationToken cancellationToken) =>
7979
/// begin paging from the beginning.
8080
/// </param>
8181
/// <param name="pageSizeHint">
82-
/// The size of <see cref="Page{T}"/>s that should be requested (from
83-
/// service operations that support it).
82+
/// The number of items per <see cref="Page{T}"/> that should be requested (from
83+
/// service operations that support it). It's not guaranteed that the value will be respected.
8484
/// </param>
8585
/// <returns>
8686
/// An async sequence of <see cref="Page{T}"/>s.

sdk/core/Azure.Core/src/Pageable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ protected Pageable(CancellationToken cancellationToken) =>
5050
/// begin paging from the beginning.
5151
/// </param>
5252
/// <param name="pageSizeHint">
53-
/// The size of <see cref="Page{T}"/>s that should be requested (from
54-
/// service operations that support it).
53+
/// The number of items per <see cref="Page{T}"/> that should be requested (from
54+
/// service operations that support it). It's not guaranteed that the value will be respected.
5555
/// </param>
5656
/// <returns>
5757
/// An async sequence of <see cref="Page{T}"/>s.

0 commit comments

Comments
 (0)