File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
dotnet/src/webdriver/Firefox Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -294,11 +294,8 @@ public void SetContext(FirefoxCommandContext context)
294294 /// <param name="addOnDirectoryToInstall">Full path of the directory of the add-on to install.</param>
295295 /// <param name="temporary">Whether the add-on is temporary; required for unsigned add-ons.</param>
296296 /// <returns>The add-on ID.</returns>
297- /// <exception cref="ArgumentException">
298- /// <para>If <paramref name="addOnDirectoryToInstall"/> is null or empty.</para>
299- /// or
300- /// <para>If the directory at <paramref name="addOnDirectoryToInstall"/> does not exist.</para>
301- /// </exception>
297+ /// <exception cref="ArgumentNullException">If <paramref name="addOnDirectoryToInstall"/> is null or empty.</exception>
298+ /// <exception cref="ArgumentException">If the directory at <paramref name="addOnDirectoryToInstall"/> does not exist.</exception>
302299 public string InstallAddOnFromDirectory ( string addOnDirectoryToInstall , bool temporary = false )
303300 {
304301 if ( string . IsNullOrEmpty ( addOnDirectoryToInstall ) )
You can’t perform that action at this time.
0 commit comments