Skip to content

Commit 8c8367a

Browse files
committed
fix exception XML
1 parent b52cf35 commit 8c8367a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriver.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff 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))

0 commit comments

Comments
 (0)