Skip to content

Commit e0d0018

Browse files
LucasMetalkblok
authored andcommitted
Fix typo and replace "which" by "that" (#1236)
1 parent a9828a2 commit e0d0018

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/PuppeteerSharp/Page.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1576,15 +1576,15 @@ void responseEventListener(object sender, ResponseCreatedEventArgs e)
15761576
/// <summary>
15771577
/// Navigate to the previous page in history.
15781578
/// </summary>
1579-
/// <returns>Task which which resolves to the main resource response. In case of multiple redirects,
1579+
/// <returns>Task that resolves to the main resource response. In case of multiple redirects,
15801580
/// the navigation will resolve with the response of the last redirect. If can not go back, resolves to null.</returns>
15811581
/// <param name="options">Navigation parameters.</param>
15821582
public Task<Response> GoBackAsync(NavigationOptions options = null) => GoAsync(-1, options);
15831583

15841584
/// <summary>
15851585
/// Navigate to the next page in history.
15861586
/// </summary>
1587-
/// <returns>Task which which resolves to the main resource response. In case of multiple redirects,
1587+
/// <returns>Task that resolves to the main resource response. In case of multiple redirects,
15881588
/// the navigation will resolve with the response of the last redirect. If can not go forward, resolves to null.</returns>
15891589
/// <param name="options">Navigation parameters.</param>
15901590
public Task<Response> GoForwardAsync(NavigationOptions options = null) => GoAsync(1, options);

0 commit comments

Comments
 (0)