File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments