Skip to content

Commit fb6f6a2

Browse files
Apply suggestions from code review
Co-authored-by: Copilot <[email protected]>
1 parent 3e12edf commit fb6f6a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CommunityToolkit.Maui/Extensions/PopupExtensions.shared.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void HandlePopupClosed(object? sender, IPopupResult e)
197197
}
198198

199199
/// <summary>
200-
/// Close the Most Recent Popup
200+
/// Closes the most recent popup and returns an <see cref="IPopupResult"/> that provides details about the closure.
201201
/// </summary>
202202
public static Task<IPopupResult> ClosePopupAsync(this Page page, CancellationToken token = default)
203203
{
@@ -244,7 +244,7 @@ void HandlePopupPageClosed(object? sender, IPopupResult e)
244244
}
245245

246246
/// <summary>
247-
/// Close the Most Recent Popup Return a Result
247+
/// Closes the most recent popup and returns a result of type <see cref="IPopupResult{TResult}"/>.
248248
/// </summary>
249249
public static Task<IPopupResult<TResult>> ClosePopupAsync<TResult>(this Page page, TResult result, CancellationToken token = default)
250250
{

0 commit comments

Comments
 (0)