@@ -86,7 +86,7 @@ public async Task ForwardAsync()
8686 /// Navigate to a url.
8787 /// </summary>
8888 /// <param name="url">String of where you want the browser to go to</param>
89- /// <exception cref="ArgumentNullException">If <paramref name="url"/> is null.</exception>
89+ /// <exception cref="ArgumentNullException">If <paramref name="url"/> is <see langword=" null"/> .</exception>
9090 public void GoToUrl ( string url )
9191 {
9292 Task . Run ( async delegate
@@ -100,7 +100,7 @@ public void GoToUrl(string url)
100100 /// </summary>
101101 /// <param name="url">String of where you want the browser to go.</param>
102102 /// <returns>A task object representing the asynchronous operation.</returns>
103- /// <exception cref="ArgumentNullException">If <paramref name="url"/> is null.</exception>
103+ /// <exception cref="ArgumentNullException">If <paramref name="url"/> is <see langword=" null"/> .</exception>
104104 public async Task GoToUrlAsync ( string url )
105105 {
106106 if ( url == null )
@@ -119,7 +119,7 @@ public async Task GoToUrlAsync(string url)
119119 /// Navigate to a url.
120120 /// </summary>
121121 /// <param name="url">Uri object of where you want the browser to go.</param>
122- /// <exception cref="ArgumentNullException">If <paramref name="url"/> is null.</exception>
122+ /// <exception cref="ArgumentNullException">If <paramref name="url"/> is <see langword=" null"/> .</exception>
123123 public void GoToUrl ( Uri url )
124124 {
125125 Task . Run ( async delegate
@@ -133,7 +133,7 @@ public void GoToUrl(Uri url)
133133 /// </summary>
134134 /// <param name="url">Uri object of where you want the browser to go.</param>
135135 /// <returns>A task object representing the asynchronous operation.</returns>
136- /// <exception cref="ArgumentNullException">If <paramref name="url"/> is null.</exception>
136+ /// <exception cref="ArgumentNullException">If <paramref name="url"/> is <see langword=" null"/> .</exception>
137137 public async Task GoToUrlAsync ( Uri url )
138138 {
139139 if ( url == null )
0 commit comments